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

Commit 2ea88df

Browse files
committed
assertNull()
1 parent 9c1f4b7 commit 2ea88df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,10 +570,10 @@ public function testAbsoluteSetPort443OnHttps($absoluteURI, $port)
570570
public function testRelativeURIDoesnotSetPort()
571571
{
572572
$client = new Client('/example');
573-
$this->assertSame(null, $client->getUri()->getPort());
573+
$this->assertNull($client->getUri()->getPort());
574574

575575
$client->setAdapter(Test::class);
576576
$client->send();
577-
$this->assertSame(null, $client->getUri()->getPort());
577+
$this->assertNull($client->getUri()->getPort());
578578
}
579579
}

0 commit comments

Comments
 (0)