Skip to content

Commit f46cedb

Browse files
committed
Fix review comments
1 parent efecd53 commit f46cedb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ext/uri/tests/rfc3986/parsing/scheme_success_empty_host.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test Uri\Rfc3986\Uri parsing - scheme - empty
2+
Test Uri\Rfc3986\Uri parsing - scheme - empty host
33
--FILE--
44
<?php
55

ext/uri/tests/rfc3986/parsing/scheme_success_only.phpt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test Uri\Rfc3986\Uri parsing - scheme - only scheme
33
--FILE--
44
<?php
55

6-
$uri = Uri\Rfc3986\Uri::parse("http://");
6+
$uri = Uri\Rfc3986\Uri::parse("http:");
77

88
var_dump($uri);
99
var_dump($uri->toRawString());
@@ -19,7 +19,7 @@ object(Uri\Rfc3986\Uri)#%d (%d) {
1919
["password"]=>
2020
NULL
2121
["host"]=>
22-
string(0) ""
22+
NULL
2323
["port"]=>
2424
NULL
2525
["path"]=>
@@ -29,5 +29,5 @@ object(Uri\Rfc3986\Uri)#%d (%d) {
2929
["fragment"]=>
3030
NULL
3131
}
32-
string(7) "http://"
33-
string(7) "http://"
32+
string(5) "http:"
33+
string(5) "http:"

0 commit comments

Comments
 (0)