Skip to content

Commit fd814e2

Browse files
authored
fix typo
1 parent 7ad07e0 commit fd814e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/PsrContextSpec.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ public function testShouldCreateQueueWithGivenName()
5555
{
5656
$context = $this->createContext();
5757

58-
$topic = $context->createTopic('theName');
58+
$queue = $context->createTopic('theName');
5959

60-
$this->assertInstanceOf(PsrQueue::class, $topic);
61-
$this->assertSame('theName', $topic->getTopicName());
60+
$this->assertInstanceOf(PsrQueue::class, $queue);
61+
$this->assertSame('theName', $queue->getQueueName());
6262
}
6363

6464
public function testShouldCreateProducerOnCreateProducerMethodCall()

0 commit comments

Comments
 (0)