Skip to content

Commit

Permalink
Fix botocore test keyerror
Browse files Browse the repository at this point in the history
  • Loading branch information
tammy-baylis-swi committed May 4, 2023
1 parent f731999 commit fd03c55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def test_sqs_send_message(self):
)
self.memory_exporter.clear()

queue_url = response["QueueUrl"]
queue_url = response.get("QueueUrl")
sqs.send_message(QueueUrl=queue_url, MessageBody="Test SQS MESSAGE!")

self.assert_span(
Expand Down

0 comments on commit fd03c55

Please sign in to comment.