Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Unified Diff: tests/standalone/io/directory_uri_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698