From: Yehuda Sadeh Date: Sat, 11 Feb 2012 00:53:06 +0000 (-0800) Subject: test '%' as a valid char for object name X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=54d98ff1e3b8d5b92ca164cf6032b90ce7bb1213;p=s3-tests.git test '%' as a valid char for object name --- diff --git a/s3tests/functional/test_s3.py b/s3tests/functional/test_s3.py index 6a75aa5e..36d8bccf 100644 --- a/s3tests/functional/test_s3.py +++ b/s3tests/functional/test_s3.py @@ -2584,7 +2584,7 @@ def test_bucket_create_naming_good_contains_hyphen(): @attr(operation='create and list objects with special names') @attr(assertion='special names work') def test_bucket_create_special_key_names(): - key_names = [' ', '_', '_ ', '_ _', '__'] + key_names = [' ', '%', '_', '_ ', '_ _', '__'] bucket = _create_keys(keys=key_names) li = bucket.list()