Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 9055a4c

Browse files
mtagliabmichalbundyra
authored andcommitted
Inverted order of parameters
1 parent 212c81d commit 9055a4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/UriTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,7 +1377,7 @@ public function testUriWithEndingColonWithoutPort()
13771377
$uriString = 'http://www.example.com:';
13781378
$uri = new Uri($uriString);
13791379

1380-
$this->assertSame($uri->getHost(), 'www.example.com');
1381-
$this->assertSame($uri->getPort(), null);
1380+
$this->assertSame('www.example.com', $uri->getHost());
1381+
$this->assertSame(null, $uri->getPort());
13821382
}
13831383
}

0 commit comments

Comments
 (0)