Skip to content

Commit 1a8d11d

Browse files
author
gpolverini
committed
+ Fix TDD.-
1 parent 05eee5a commit 1a8d11d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/UriTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ public function testHttpUriWithPathQueryAndFragmentHttp()
141141
public function testFtpUri()
142142
{
143143
$uri = new Uri('ftp://username:password@ftp.example.com:21');
144-
$this->assertEquals('ftp://username:password@ftp.example.com:21', (string) $uri);
144+
$this->assertEquals('ftp://username:password@ftp.example.com', (string) $uri);
145145
$this->assertEquals('ftp', $uri->getScheme());
146146
$this->assertEquals(21, $uri->getPort());
147-
$this->assertEquals('username:password@ftp.example.com:21', $uri->getAuthority());
147+
$this->assertEquals('username:password@ftp.example.com', $uri->getAuthority());
148148
$this->assertEquals('username:password', $uri->getUserInfo());
149149
$this->assertEquals('ftp.example.com', $uri->getHost());
150150
$this->assertEquals('', $uri->getPath());

0 commit comments

Comments
 (0)