Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rybakit committed May 22, 2019
1 parent 5aa52f0 commit 1227fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/DsnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function testParseValidTcpDsn(string $dsn, array $expected) : void
* ["unix://foo:bar@/path/to/socket.sock?opt=42", {"uri": "unix:///path/to/socket.sock", "path": "/path/to/socket.sock", "username": "foo", "password": "bar"}]
* ["unix://f%40%40:b%40r@%2fsocket.sock", {"uri": "unix://%2fsocket.sock", "path": "/socket.sock", "username": "f@@", "password": "b@r"}]
*/
public function testParseValidUdpDsn(string $dsn, array $expected) : void
public function testParseValidUdsDsn(string $dsn, array $expected) : void
{
$dsn = Dsn::parse($dsn);
self::assertSame($expected['uri'], $dsn->getConnectionUri());
Expand Down

0 comments on commit 1227fd3

Please sign in to comment.