| Index: tests/standalone/io/link_uri_test.dart
|
| diff --git a/tests/standalone/io/link_uri_test.dart b/tests/standalone/io/link_uri_test.dart
|
| index e9afb0a14c4071bfee6f5b2df97bbd86bc70ae00..0652a5bd29028e614f06df008dafbb9932cacb60 100644
|
| --- a/tests/standalone/io/link_uri_test.dart
|
| +++ b/tests/standalone/io/link_uri_test.dart
|
| @@ -38,9 +38,9 @@ void testFromUriUnsupported() {
|
| () => new Link.fromUri(Uri.parse('http://localhost:8080/index.html')),
|
| (e) => e is UnsupportedError);
|
| Expect.throws(() => new Link.fromUri(Uri.parse('ftp://localhost/tmp/xxx')),
|
| - (e) => e is UnsupportedError);
|
| + (e) => e is UnsupportedError);
|
| Expect.throws(() => new Link.fromUri(Uri.parse('name#fragment')),
|
| - (e) => e is UnsupportedError);
|
| + (e) => e is UnsupportedError);
|
| }
|
|
|
| void main() {
|
|
|