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 e67d4fc commit c1e6d2dCopy full SHA for c1e6d2d
tests/Functional/TestCase.php
@@ -258,9 +258,11 @@ public function testReconnect(): void
258
$this->assertTrue($queue->getConnection()->isConnected());
259
$this->assertSame($channel, $this->callProperty($queue, 'channel'));
260
261
- // reconnect
+ // close
262
$queue->getConnection()->close();
263
$this->assertFalse($queue->getConnection()->isConnected());
264
+
265
+ // reconnect
266
$this->callMethod($queue, 'reconnect');
267
268
$this->assertTrue($queue->getChannel()->is_open());
0 commit comments