Skip to content

Commit 2cf5261

Browse files
CS fixes
1 parent c93adca commit 2cf5261

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/Transport/FailoverTransportTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ public function testSendOneDeadButRecover()
142142
$t2 = $this->createMock(TransportInterface::class);
143143
$t2->expects($this->exactly(3))
144144
->method('send')->willReturnOnConsecutiveCalls(
145-
null,
146-
null,
147-
$this->throwException(new TransportException())
148-
);
145+
null,
146+
null,
147+
$this->throwException(new TransportException())
148+
);
149149
$t = new FailoverTransport([$t1, $t2], 1);
150150
$t->send(new RawMessage(''));
151151
sleep(1);

0 commit comments

Comments
 (0)