summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKonstantinos Koukopoulos <koukopoulos@gmail.com>2014-08-26 17:46:22 +0300
committerKonstantinos Koukopoulos <koukopoulos@gmail.com>2014-08-26 17:46:22 +0300
commitd57f87eadef99617091a9bfa6845991eb7e22804 (patch)
tree3d7b85c15836f7d74c2f3533a477d4d094a6b55f /tests
parenta544fb7d53aa09489cf237ffdce76c595e2732ba (diff)
downloadboto-d57f87eadef99617091a9bfa6845991eb7e22804.tar.gz
Revert "remove forgotten pdb invocation."
This reverts commit a544fb7d53aa09489cf237ffdce76c595e2732ba.
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/s3/test_bucket.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/s3/test_bucket.py b/tests/integration/s3/test_bucket.py
index 84951440..3d464bd1 100644
--- a/tests/integration/s3/test_bucket.py
+++ b/tests/integration/s3/test_bucket.py
@@ -100,6 +100,8 @@ class S3BucketTest (unittest.TestCase):
getall = lambda *a, **k: orig_getall(*a, max_keys=2, **k)
with patch.object(self.bucket, '_get_all', getall):
rs = self.bucket.list(encoding_type="url")
+ import pdb
+ pdb.set_trace()
for element in rs:
name = urllib.parse.unquote(element.name.encode('utf-8'))
self.assertEqual(name, expected.pop(0))