From: Yehuda Sadeh Date: Tue, 30 Jun 2015 18:26:35 +0000 (-0700) Subject: s3tests: fix for python 2.6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3fea65c3b4c535318538de7ebd6f6c5545e6e03b;p=s3-tests.git s3tests: fix for python 2.6 Signed-off-by: Yehuda Sadeh --- diff --git a/s3tests/functional/test_s3.py b/s3tests/functional/test_s3.py index 91cb4c83..3376127b 100644 --- a/s3tests/functional/test_s3.py +++ b/s3tests/functional/test_s3.py @@ -6107,7 +6107,7 @@ def test_versioning_multi_object_delete_with_marker_create(): keyname = 'key' - rmkeys = { bucket.new_key(keyname) } + rmkeys = [ bucket.new_key(keyname) ] eq(_count_bucket_versioned_objs(bucket), 0)