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 f3bc459 commit 225854cCopy full SHA for 225854c
tests/Integration/BoltDriverIntegrationTest.php
@@ -18,6 +18,7 @@
18
use Laudis\Neo4j\Bolt\BoltDriver;
19
use Laudis\Neo4j\Databags\SummarizedResult;
20
use Laudis\Neo4j\Neo4j\Neo4jDriver;
21
+use Throwable;
22
23
final class BoltDriverIntegrationTest extends EnvironmentAwareIntegrationTest
24
{
@@ -43,7 +44,7 @@ public function testValidUrl(): void
43
44
$results = BoltDriver::create($this->getUri()->withHost($ip)->__toString())
45
->createSession()
46
->run('RETURN 1 AS x');
- } catch (ConnectException $e) {
47
+ } catch (Throwable $e) {
48
$this->markTestSkipped($e->getMessage());
49
}
50
0 commit comments