We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf09a01 commit 9b226ecCopy full SHA for 9b226ec
eb_sqs/tests/aws/tests_aws_queue_client.py
@@ -14,7 +14,7 @@
14
class AwsQueueClientTest(TestCase):
15
@mock_sqs()
16
def test_add_message(self):
17
- sqs = boto3.resource('sqs', region_name=settings.AWS_REGION)
+ sqs = boto3.resource('sqs')
18
queue = sqs.create_queue(QueueName='eb-sqs-default')
19
20
queue_client = SqsQueueClient()
@@ -27,7 +27,7 @@ def test_add_message(self):
27
28
def test_add_message_delayed(self):
29
delay = 1
30
31
32
33
0 commit comments