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

Unified Diff: tests/standalone/io/file_constructor_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/file_constructor_test.dart
diff --git a/tests/standalone/io/file_constructor_test.dart b/tests/standalone/io/file_constructor_test.dart
index 251e1adfd7b2cee072a169d3732cba81ffc6636e..251348b10174ecd988ea81aa21e78905b7fa3a02 100644
--- a/tests/standalone/io/file_constructor_test.dart
+++ b/tests/standalone/io/file_constructor_test.dart
@@ -13,15 +13,15 @@ void main() {
try {
new File(null);
Expect.fail('ArgumentError expected.');
- } on ArgumentError catch(e) {
+ } on ArgumentError catch (e) {
// Expected.
}
try {
new File(1);
Expect.fail('Error expected.');
- } on ArgumentError catch(e) {
+ } on ArgumentError catch (e) {
if (developerMode) rethrow;
- } on TypeError catch(e) {
+ } on TypeError catch (e) {
if (!developerMode) rethrow;
}
}

Powered by Google App Engine
This is Rietveld 408576698