| Index: tests/corelib/uri_test.dart
|
| diff --git a/tests/corelib/uri_test.dart b/tests/corelib/uri_test.dart
|
| index ef99595198abecaffdf97f1a0804da2040dd085b..7d8a6bf170c8a00ecfae58f9d3b7f726094a03a7 100644
|
| --- a/tests/corelib/uri_test.dart
|
| +++ b/tests/corelib/uri_test.dart
|
| @@ -367,7 +367,7 @@ void testNormalization() {
|
|
|
| main() {
|
| testUri("http:", true);
|
| - testUri("file://", true);
|
| + testUri("file:///", true);
|
| testUri("file", false);
|
| testUri("http://user@example.com:8080/fisk?query=89&hest=silas", true);
|
| testUri("http://user@example.com:8080/fisk?query=89&hest=silas#fragment",
|
| @@ -390,7 +390,7 @@ main() {
|
| path: "/a/b/c/",
|
| query: null,
|
| fragment: null).toString());
|
| - Expect.stringEquals("file://", Uri.parse("file:").toString());
|
| + Expect.stringEquals("file:///", Uri.parse("file:").toString());
|
|
|
| testResolvePath("/a/g", "/a/b/c/./../../g");
|
| testResolvePath("/a/g", "/a/b/c/./../../g");
|
|
|