forked from TrueCloudLab/s3-tests
fix lists compare
This commit is contained in:
parent
5cb2bcdf89
commit
a2598dcdea
1 changed files with 1 additions and 1 deletions
|
@ -10869,7 +10869,7 @@ def test_put_obj_with_tags():
|
||||||
eq(body, data)
|
eq(body, data)
|
||||||
|
|
||||||
response = client.get_object_tagging(Bucket=bucket_name, Key=key)
|
response = client.get_object_tagging(Bucket=bucket_name, Key=key)
|
||||||
eq(response['TagSet'], tagset)
|
eq(response['TagSet'].sort(), tagset.sort())
|
||||||
|
|
||||||
def _make_arn_resource(path="*"):
|
def _make_arn_resource(path="*"):
|
||||||
return "arn:aws:s3:::{}".format(path)
|
return "arn:aws:s3:::{}".format(path)
|
||||||
|
|
Loading…
Reference in a new issue