| Index: tests/corelib/uri_normalize_test.dart
|
| diff --git a/tests/corelib/uri_normalize_test.dart b/tests/corelib/uri_normalize_test.dart
|
| index 5c2f8140c0800bbc8459aa3f8843c8e5edd3d2f6..af97653fc74f0ae23612909128d90de3ec06a9a4 100644
|
| --- a/tests/corelib/uri_normalize_test.dart
|
| +++ b/tests/corelib/uri_normalize_test.dart
|
| @@ -14,8 +14,8 @@ testNormalizePath() {
|
| }
|
|
|
| var unreserved = "-._~0123456789"
|
| - "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
| - "abcdefghijklmnopqrstuvwxyz";
|
| + "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
| + "abcdefghijklmnopqrstuvwxyz";
|
|
|
| test("A", "%41");
|
| test("AB", "%41%42");
|
| @@ -35,7 +35,7 @@ testNormalizePath() {
|
| }
|
| }
|
| Expect.equals(x.toString().toUpperCase(),
|
| - new Uri(path: x.toString()).toString().toUpperCase());
|
| + new Uri(path: x.toString()).toString().toUpperCase());
|
|
|
| // Normalized paths.
|
|
|
|
|