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 5c0ac66 commit f5883a4Copy full SHA for f5883a4
1 file changed
tests/Unit/QueueTest.php
@@ -157,7 +157,7 @@ public function testGetName(): void
157
{
158
$queue = $this
159
->getQueue()
160
- ->withAdapter(new StubAdapter('test-channel'), 'test-queue');
+ ->withAdapter(new StubAdapter(), 'test-queue');
161
162
$this->assertSame('test-queue', $queue->getName());
163
}
@@ -166,7 +166,7 @@ public function testGetNameWithBackedEnum(): void
166
167
168
169
- ->withAdapter(new StubAdapter('test-channel'), TestQueue::HIGH_PRIORITY);
+ ->withAdapter(new StubAdapter(), TestQueue::HIGH_PRIORITY);
170
171
$this->assertSame('high-priority', $queue->getName());
172
0 commit comments