Index: tests/lib/mirrors/fake_function_without_call_test.dart |
diff --git a/tests/lib/mirrors/fake_function_without_call_test.dart b/tests/lib/mirrors/fake_function_without_call_test.dart |
index be2bdd19ebbb810cbbf6800ca60270d704f973ea..4503b12413f053f89ea4cc774334c498730144df 100644 |
--- a/tests/lib/mirrors/fake_function_without_call_test.dart |
+++ b/tests/lib/mirrors/fake_function_without_call_test.dart |
@@ -26,8 +26,7 @@ main() { |
Expect.equals('a', Function.apply(f, ['a'])); |
Expect.equals('a,b', Function.apply(f, ['a', 'b'])); |
Expect.equals('a,b,c', Function.apply(f, ['a', 'b', 'c'])); |
- Expect.throws(() => f.foo('a', 'b', 'c'), |
- (e) => e is NoSuchMethodError); |
+ Expect.throws(() => f.foo('a', 'b', 'c'), (e) => e is NoSuchMethodError); |
ClosureMirror cm = reflect(f); |
Expect.isTrue(cm is ClosureMirror); |