Index: tests/corelib/uri_http_test.dart |
diff --git a/tests/corelib/uri_http_test.dart b/tests/corelib/uri_http_test.dart |
index 79bc3c8746168ecf545ca7e48e052b37bdebe4c0..283d995a005822dbbda270ce14c1d74fd61d43b3 100644 |
--- a/tests/corelib/uri_http_test.dart |
+++ b/tests/corelib/uri_http_test.dart |
@@ -10,8 +10,8 @@ testHttpUri() { |
} |
check(new Uri.http("", ""), "http:"); |
- check(new Uri.http("@:", ""), "http://"); |
- check(new Uri.http("@:8080", ""), "http://:8080"); |
+ check(new Uri.http("@:", ""), "http:"); |
+ check(new Uri.http("@:8080", ""), "http:"); |
check(new Uri.http("@host:", ""), "http://host"); |
check(new Uri.http("@host:", ""), "http://host"); |
check(new Uri.http("xxx:yyy@host:8080", ""), "http://xxx:yyy@host:8080"); |
@@ -41,8 +41,8 @@ testHttpsUri() { |
} |
check(new Uri.https("", ""), "https:"); |
- check(new Uri.https("@:", ""), "https://"); |
- check(new Uri.https("@:8080", ""), "https://:8080"); |
+ check(new Uri.https("@:", ""), "https:"); |
+ check(new Uri.https("@:8080", ""), "https:"); |
check(new Uri.https("@host:", ""), "https://host"); |
check(new Uri.https("@host:", ""), "https://host"); |
check(new Uri.https("xxx:yyy@host:8080", ""), "https://xxx:yyy@host:8080"); |