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

Unified Diff: tests/corelib/uri_file_test.dart

Issue 167703010: Write custom URI-parser, to avoid using regexp. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 | « sdk/lib/core/uri.dart ('k') | tests/corelib/uri_parse_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/uri_file_test.dart
diff --git a/tests/corelib/uri_file_test.dart b/tests/corelib/uri_file_test.dart
index d0e30a7379d52537a4df2f72d7924dd60f9cf093..194fd9db521b1df7cca207818fd9403cdf51a802 100644
--- a/tests/corelib/uri_file_test.dart
+++ b/tests/corelib/uri_file_test.dart
@@ -258,7 +258,7 @@ testAdditionalComponents() {
check("file:///path#fragment");
check("file:///path?query#fragment");
check("file://host/path", windowsOk: true);
- check("file://user@password:host/path");
+ check("file://user:password@host/path", windowsOk: true);
}
main() {
« no previous file with comments | « sdk/lib/core/uri.dart ('k') | tests/corelib/uri_parse_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698