From c1a5f82dabb8afe115032f9103104080da037464 Mon Sep 17 00:00:00 2001 From: Eric Hanson Date: Thu, 21 Oct 2021 08:20:30 -0400 Subject: [PATCH] Remove unnecessary assert from unit test --- tests/test_sqs.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_sqs.py b/tests/test_sqs.py index 33f0f11..aeca3e5 100644 --- a/tests/test_sqs.py +++ b/tests/test_sqs.py @@ -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):