Merge pull request #665 from macheins/fix-broken-sqs-queue-arn-attribute
Fix broken SQS QueueArn attribute
This commit is contained in:
commit
ececa8009b
2 changed files with 2 additions and 2 deletions
|
|
@ -395,7 +395,7 @@ def test_queue_attributes():
|
|||
attributes = queue.get_attributes()
|
||||
|
||||
attributes['QueueArn'].should.look_like(
|
||||
'arn:aws:sqs:sqs.us-east-1:123456789012:%s' % queue_name)
|
||||
'arn:aws:sqs:us-east-1:123456789012:%s' % queue_name)
|
||||
|
||||
attributes['VisibilityTimeout'].should.look_like(str(visibility_timeout))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue