Skip to content

Commit 695db91

Browse files
committed
test: remove unneeded variable concatenation
1 parent 9e46442 commit 695db91

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/system/HTTP/URITest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ public function testEmptyUri()
142142
{
143143
$url = '';
144144
$uri = new URI($url);
145-
$this->assertSame('http://' . $url, (string) $uri);
145+
146+
$this->assertSame('http://', (string) $uri);
147+
146148
$url = '/';
147149
$uri = new URI($url);
148150

0 commit comments

Comments
 (0)