Skip to content

Commit 1227fd3

Browse files
committed
Fix typo
1 parent 5aa52f0 commit 1227fd3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/Unit/DsnTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function testParseValidTcpDsn(string $dsn, array $expected) : void
5656
* ["unix://foo:bar@/path/to/socket.sock?opt=42", {"uri": "unix:///path/to/socket.sock", "path": "/path/to/socket.sock", "username": "foo", "password": "bar"}]
5757
* ["unix://f%40%40:b%40r@%2fsocket.sock", {"uri": "unix://%2fsocket.sock", "path": "/socket.sock", "username": "f@@", "password": "b@r"}]
5858
*/
59-
public function testParseValidUdpDsn(string $dsn, array $expected) : void
59+
public function testParseValidUdsDsn(string $dsn, array $expected) : void
6060
{
6161
$dsn = Dsn::parse($dsn);
6262
self::assertSame($expected['uri'], $dsn->getConnectionUri());

0 commit comments

Comments
 (0)