Skip to content

Commit

Permalink
Remove unnecessary assert from unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ehanson8 committed Oct 21, 2021
1 parent a9a1e0e commit c1a5f82
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_sqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ def test_sqs_send_failure(
sqs_client, dss_message_attributes_example, dss_message_body_example
):
with pytest.raises(ClientError):
response = sqs_client.send(
sqs_client.send(
"non-existent", dss_message_attributes_example, dss_message_body_example
)
assert response["ResponseMetadata"]["HTTPStatusCode"] == 200


def test_create_dss_message_attributes(dss_message_attributes_example):
Expand Down

0 comments on commit c1a5f82

Please sign in to comment.