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

Unified Diff: tests/lib/mirrors/inference_and_no_such_method_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/lib/mirrors/inference_and_no_such_method_test.dart
diff --git a/tests/lib/mirrors/inference_and_no_such_method_test.dart b/tests/lib/mirrors/inference_and_no_such_method_test.dart
index 6de255121e2d70635bfb4e583281c7e5c0e198d2..3274d110cbca30903184b0841440f72e91dd392e 100644
--- a/tests/lib/mirrors/inference_and_no_such_method_test.dart
+++ b/tests/lib/mirrors/inference_and_no_such_method_test.dart
@@ -24,6 +24,6 @@ class B {
main() {
Expect.equals(42, new B().foo(0));
- Expect.throws(() => new A().foo('foo'),
- (e) => e is ArgumentError || e is TypeError);
+ Expect.throws(
+ () => new A().foo('foo'), (e) => e is ArgumentError || e is TypeError);
}

Powered by Google App Engine
This is Rietveld 408576698