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

Unified Diff: tests/language/inferrer_synthesized_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/language/inferrer_synthesized_constructor_test.dart
diff --git a/tests/language/inferrer_synthesized_constructor_test.dart b/tests/language/inferrer_synthesized_constructor_test.dart
index aa6c52bdbee64a46587ecc0a981bd74cb70a7481..5a813db1ee405130af62ee34135a604b5ef81eef 100644
--- a/tests/language/inferrer_synthesized_constructor_test.dart
+++ b/tests/language/inferrer_synthesized_constructor_test.dart
@@ -22,6 +22,6 @@ main() {
// used to only see this call and consider the [A.x] field to always
// be int.
Expect.equals(84, new A(42).x + 42);
- Expect.throws(() => new B().x + 42,
- (e) => e is ArgumentError || e is TypeError);
+ Expect.throws(
+ () => new B().x + 42, (e) => e is ArgumentError || e is TypeError);
}

Powered by Google App Engine
This is Rietveld 408576698