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 aa29e73 commit 9d9a04fCopy full SHA for 9d9a04f
pkg/snsqs/Tests/Spec/SnsQsSendToTopicAndReceiveNoWaitFromQueueTest.php
@@ -24,16 +24,28 @@ protected function tearDown(): void
24
25
protected function createContext()
26
{
27
- return $this->createSnsQsContext();
+ try {
28
+ return $this->createSnsQsContext();
29
+ } finally {
30
+ sleep(1);
31
+ }
32
}
33
34
protected function createTopic(Context $context, $topicName)
35
- return $this->createSnsQsTopic($topicName);
36
37
+ return $this->createSnsQsTopic($topicName);
38
39
40
41
42
43
protected function createQueue(Context $context, $queueName)
44
- return $this->createSnsQsQueue($queueName);
45
46
+ return $this->createSnsQsQueue($queueName);
47
48
49
50
51
0 commit comments