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 7ad07e0 commit fd814e2Copy full SHA for fd814e2
src/PsrContextSpec.php
@@ -55,10 +55,10 @@ public function testShouldCreateQueueWithGivenName()
55
{
56
$context = $this->createContext();
57
58
- $topic = $context->createTopic('theName');
+ $queue = $context->createTopic('theName');
59
60
- $this->assertInstanceOf(PsrQueue::class, $topic);
61
- $this->assertSame('theName', $topic->getTopicName());
+ $this->assertInstanceOf(PsrQueue::class, $queue);
+ $this->assertSame('theName', $queue->getQueueName());
62
}
63
64
public function testShouldCreateProducerOnCreateProducerMethodCall()
0 commit comments