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 5aa52f0 commit 1227fd3Copy full SHA for 1227fd3
1 file changed
tests/Unit/DsnTest.php
@@ -56,7 +56,7 @@ public function testParseValidTcpDsn(string $dsn, array $expected) : void
56
* ["unix://foo:bar@/path/to/socket.sock?opt=42", {"uri": "unix:///path/to/socket.sock", "path": "/path/to/socket.sock", "username": "foo", "password": "bar"}]
57
* ["unix://f%40%40:b%40r@%2fsocket.sock", {"uri": "unix://%2fsocket.sock", "path": "/socket.sock", "username": "f@@", "password": "b@r"}]
58
*/
59
- public function testParseValidUdpDsn(string $dsn, array $expected) : void
+ public function testParseValidUdsDsn(string $dsn, array $expected) : void
60
{
61
$dsn = Dsn::parse($dsn);
62
self::assertSame($expected['uri'], $dsn->getConnectionUri());
0 commit comments