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 4bbd973 commit 28ccafcCopy full SHA for 28ccafc
Tests/Transport/AmqpExtIntegrationTest.php
@@ -150,9 +150,8 @@ public function testRetryAffectsOnlyOriginalQueue()
150
$connection->setup();
151
$connection->purgeQueues();
152
153
- $serializer = $this->createSerializer();
154
- $sender = new AmqpSender($connection, $serializer);
155
- $receiver = new AmqpReceiver($connection, $serializer);
+ $sender = new AmqpSender($connection);
+ $receiver = new AmqpReceiver($connection);
156
157
// initial delivery: should receive in both queues
158
$sender->send(new Envelope(new DummyMessage('Payload')));
0 commit comments