| Index: tests/standalone/io/directory_uri_test.dart
|
| diff --git a/tests/standalone/io/directory_uri_test.dart b/tests/standalone/io/directory_uri_test.dart
|
| index 70e886116eb7beced535798fab89b45a657b0a93..fe77c520f07305e18a24415e5d7cc634ad7eb560 100644
|
| --- a/tests/standalone/io/directory_uri_test.dart
|
| +++ b/tests/standalone/io/directory_uri_test.dart
|
| @@ -33,14 +33,14 @@ void testFromUri() {
|
|
|
| void testFromUriUnsupported() {
|
| Expect.throws(
|
| - () => new Directory.fromUri(
|
| - Uri.parse('http://localhost:8080/index.html')),
|
| + () =>
|
| + new Directory.fromUri(Uri.parse('http://localhost:8080/index.html')),
|
| (e) => e is UnsupportedError);
|
| Expect.throws(
|
| () => new Directory.fromUri(Uri.parse('ftp://localhost/tmp/xxx')),
|
| (e) => e is UnsupportedError);
|
| Expect.throws(() => new Directory.fromUri(Uri.parse('name#fragment')),
|
| - (e) => e is UnsupportedError);
|
| + (e) => e is UnsupportedError);
|
| }
|
|
|
| void main() {
|
|
|