Skip to content

Commit 9e587de

Browse files
committed
Remove checks for exception message generated by dependency
1 parent ea9879f commit 9e587de

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/ConnectionConfigTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ public function testAlternativeSyntax(): void
3232
public function testNoHost(): void
3333
{
3434
$this->expectException(\Error::class);
35-
$this->expectExceptionMessage("Host must be provided in connection string");
3635
$config = PostgresConfig::fromString("user=postgres");
3736
}
3837

3938
public function testInvalidString(): void
4039
{
4140
$this->expectException(\Error::class);
42-
$this->expectExceptionMessage("Host must be provided in connection string");
4341
$config = PostgresConfig::fromString("invalid connection string");
4442
}
4543

0 commit comments

Comments
 (0)