From: Abhishek Lekshmanan Date: Fri, 20 Oct 2017 11:51:48 +0000 (+0200) Subject: typo fix for pub_obj_acl X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=afa108d742690d930e2f22a4c65b66173464aac0;p=s3-tests.git typo fix for pub_obj_acl Signed-off-by: Abhishek Lekshmanan --- diff --git a/s3tests/functional/test_s3.py b/s3tests/functional/test_s3.py index 4124b137..ee99a101 100644 --- a/s3tests/functional/test_s3.py +++ b/s3tests/functional/test_s3.py @@ -9890,7 +9890,7 @@ def test_bucket_policy_put_obj_acl(): p = Policy() resource = _make_arn_resource("{}/{}".format(bucket.name, "*")) s1 = Statement("s3:PutObject",resource) - s2 = Statement("s3:PutOBject", resource, effect="Deny", condition=conditional) + s2 = Statement("s3:PutObject", resource, effect="Deny", condition=conditional) policy_document = p.add_statement(s1).add_statement(s2).to_json()