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

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
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);
Søren Gjesse 2014/02/24 09:12:41 Please add the previous URI to a failing test some
Anders Johnsen 2014/02/24 12:44:33 Done.
Lasse Reichstein Nielsen 2014/02/24 13:02:27 We need tests. Lots of tests. Something like: fo
Anders Johnsen 2014/02/24 14:26:49 Done.
}
main() {

Powered by Google App Engine
This is Rietveld 408576698