From: Casey Bodley Date: Wed, 18 May 2022 13:40:14 +0000 (-0400) Subject: fix GetBucketTagging error code X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9f1b9d02a5fd8626a461311d7cc3de5f0b0b7537;p=s3-tests.git fix GetBucketTagging error code related to https://tracker.ceph.com/issues/55460 Signed-off-by: Casey Bodley --- diff --git a/s3tests_boto3/functional/test_s3.py b/s3tests_boto3/functional/test_s3.py index 75f97be3..9b04a5fa 100644 --- a/s3tests_boto3/functional/test_s3.py +++ b/s3tests_boto3/functional/test_s3.py @@ -7799,7 +7799,7 @@ def test_set_bucket_tagging(): e = assert_raises(ClientError, client.get_bucket_tagging, Bucket=bucket_name) status, error_code = _get_status_and_error_code(e.response) eq(status, 404) - eq(error_code, 'NoSuchTagSetError') + eq(error_code, 'NoSuchTagSet') client.put_bucket_tagging(Bucket=bucket_name, Tagging=tags) @@ -7812,7 +7812,7 @@ def test_set_bucket_tagging(): e = assert_raises(ClientError, client.get_bucket_tagging, Bucket=bucket_name) status, error_code = _get_status_and_error_code(e.response) eq(status, 404) - eq(error_code, 'NoSuchTagSetError') + eq(error_code, 'NoSuchTagSet') class FakeFile(object):