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 c93adca commit 2cf5261Copy full SHA for 2cf5261
Tests/Transport/FailoverTransportTest.php
@@ -142,10 +142,10 @@ public function testSendOneDeadButRecover()
142
$t2 = $this->createMock(TransportInterface::class);
143
$t2->expects($this->exactly(3))
144
->method('send')->willReturnOnConsecutiveCalls(
145
- null,
146
147
- $this->throwException(new TransportException())
148
- );
+ null,
+ $this->throwException(new TransportException())
+ );
149
$t = new FailoverTransport([$t1, $t2], 1);
150
$t->send(new RawMessage(''));
151
sleep(1);
0 commit comments