Skip to content

Commit

Permalink
fix(test_sqs) Extends the Visibility Timeout for failed test(getmoto#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cm-iwata committed Jun 15, 2022
1 parent 7882505 commit 1bbdbc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_sqs/test_sqs.py
Expand Up @@ -1635,7 +1635,7 @@ def test_change_message_visibility_on_old_message():
def test_change_message_visibility_on_visible_message():
sqs = boto3.resource("sqs", region_name="us-east-1")
queue = sqs.create_queue(
QueueName=str(uuid4())[0:6], Attributes={"VisibilityTimeout": "1"}
QueueName=str(uuid4())[0:6], Attributes={"VisibilityTimeout": "2"}
)

queue.send_message(MessageBody="test message")
Expand Down

0 comments on commit 1bbdbc2

Please sign in to comment.