Index: tests/standalone/io/file_uri_test.dart |
diff --git a/tests/standalone/io/file_uri_test.dart b/tests/standalone/io/file_uri_test.dart |
index 00fa7554edd5769c5b760a80cdc920abd7c4fb1f..707ba72cc1244ace74d273b3789e7b75147ac29d 100644 |
--- a/tests/standalone/io/file_uri_test.dart |
+++ b/tests/standalone/io/file_uri_test.dart |
@@ -31,13 +31,12 @@ void testFromUri() { |
void testFromUriUnsupported() { |
Expect.throws( |
- () => new File.fromUri( |
- Uri.parse('http://localhost:8080/index.html')), |
+ () => new File.fromUri(Uri.parse('http://localhost:8080/index.html')), |
(e) => e is UnsupportedError); |
Expect.throws(() => new File.fromUri(Uri.parse('ftp://localhost/tmp/xxx')), |
- (e) => e is UnsupportedError); |
+ (e) => e is UnsupportedError); |
Expect.throws(() => new File.fromUri(Uri.parse('name#fragment')), |
- (e) => e is UnsupportedError); |
+ (e) => e is UnsupportedError); |
} |
void main() { |