Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1480)

Unified Diff: tests/corelib/uri_http_test.dart

Issue 335773003: Revert "Try to retain original structure of URI." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/co19/co19-co19.status ('k') | tests/corelib/uri_query_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
« no previous file with comments | « tests/co19/co19-co19.status ('k') | tests/corelib/uri_query_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698