Fix more typos.

This commit is contained in:
Asher Foa 2020-01-20 15:21:11 -08:00
commit d9d055c75d
19 changed files with 61 additions and 61 deletions

View file

@ -208,7 +208,7 @@ def test_message_with_complex_attributes():
"ccc": {"StringValue": "testjunk", "DataType": "String"},
"aaa": {"BinaryValue": b"\x02\x03\x04", "DataType": "Binary"},
"zzz": {"DataType": "Number", "StringValue": "0230.01"},
"öther_encodings": {"DataType": "String", "StringValue": "T\xFCst"},
"öthere_encodings": {"DataType": "String", "StringValue": "T\xFCst"},
},
)
msg.get("MD5OfMessageBody").should.equal("58fd9edd83341c29f1aebba81c31e257")
@ -1197,7 +1197,7 @@ def test_permissions():
client.remove_permission(QueueUrl=queue_url, Label="account2")
with assert_raises(ClientError):
client.remove_permission(QueueUrl=queue_url, Label="non_existant")
client.remove_permission(QueueUrl=queue_url, Label="non_existent")
@mock_sqs