forked from TrueCloudLab/s3-tests
fix GetBucketTagging error code
related to https://tracker.ceph.com/issues/55460
Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 5b08b26453
)
This commit is contained in:
parent
42edac2aa7
commit
722c2a90bf
1 changed files with 2 additions and 2 deletions
|
@ -7797,7 +7797,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)
|
||||
|
||||
|
@ -7810,7 +7810,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):
|
||||
|
|
Loading…
Reference in a new issue