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 9f24dd6 commit d859d99Copy full SHA for d859d99
tests/Feature/RabbitMQQueueTest.php
@@ -17,9 +17,6 @@ protected function setUp(): void
17
18
$getQueueInstance = $this->app['queue'];
19
$this->connection = $getQueueInstance->connection('rabbitmq');
20
-
21
- $this->connection->deleteQueue('test_size');
22
- $this->connection->deleteQueue('queue_test');
23
}
24
25
public function testRabbitMQSize(): void
@@ -50,4 +47,12 @@ public function testRabbitMQExistsQueue(): void
50
47
51
48
$this->assertFalse($this->connection->queueExists($queue));
52
49
+
+ protected function tearDown(): void
+ {
53
+ parent::tearDown();
54
55
+ $this->connection->deleteQueue('test_size');
56
+ $this->connection->deleteQueue('queue_test');
57
+ }
58
0 commit comments