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

Unified Diff: tests/language/inference_super_constructor_call_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/language/inference_super_constructor_call_test.dart
diff --git a/tests/language/inference_super_constructor_call_test.dart b/tests/language/inference_super_constructor_call_test.dart
index 0dc55a6e02a9a52eea90aee6c0aeac303b6e943f..ad16954f3c55021fc22a79a9cbaade46b0c6afd0 100644
--- a/tests/language/inference_super_constructor_call_test.dart
+++ b/tests/language/inference_super_constructor_call_test.dart
@@ -21,6 +21,6 @@ main() {
// Call [A.full] with an int to have the inferrer think [field] is
// always an int.
Expect.equals(84, new A.full(42).field + 42);
- Expect.throws(() => new B.full(null).field + 42,
- (e) => e is NoSuchMethodError);
+ Expect.throws(
+ () => new B.full(null).field + 42, (e) => e is NoSuchMethodError);
}

Powered by Google App Engine
This is Rietveld 408576698