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

Unified Diff: tests/utils/uri_test.dart

Issue 11666003: Revert "Fix URI encoding/decoding of + and space" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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/standalone/io/url_encoding_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/utils/uri_test.dart
diff --git a/tests/utils/uri_test.dart b/tests/utils/uri_test.dart
index 202304eb02b5cd40824a4a63d24c9df7c661c1a2..66820dc1f72c0171809bad7bf58ce0848dd39842 100644
--- a/tests/utils/uri_test.dart
+++ b/tests/utils/uri_test.dart
@@ -192,7 +192,6 @@ main() {
Expect.stringEquals("\u{10000}", s);
- testEncodeDecode("A + B", "A+%2B+B");
testEncodeDecode("\uFFFE", "%EF%BF%BE");
testEncodeDecode("\uFFFF", "%EF%BF%BF");
testEncodeDecode("\uFFFE", "%EF%BF%BE");
@@ -200,7 +199,7 @@ main() {
testEncodeDecode("\x7f", "%7F");
testEncodeDecode("\x80", "%C2%80");
testEncodeDecode("\u0800", "%E0%A0%80");
- testEncodeDecode(":/@',;?&=+\$", ":/@',;?&=%2B\$");
+ testEncodeDecode(":/@',;?&=+\$", ":/@',;?&=+\$");
testEncodeDecode(s, "%F0%90%80%80");
testEncodeDecodeComponent("\uFFFE", "%EF%BF%BE");
testEncodeDecodeComponent("\uFFFF", "%EF%BF%BF");
« no previous file with comments | « tests/standalone/io/url_encoding_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698