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); |
} |