From 9f1b9d02a5fd8626a461311d7cc3de5f0b0b7537 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 18 May 2022 09:40:14 -0400 Subject: [PATCH] fix GetBucketTagging error code related to https://tracker.ceph.com/issues/55460 Signed-off-by: Casey Bodley --- s3tests_boto3/functional/test_s3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/s3tests_boto3/functional/test_s3.py b/s3tests_boto3/functional/test_s3.py index 75f97be..9b04a5f 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):