| Index: tests/lib_strong/mirrors/fake_function_without_call_test.dart
|
| diff --git a/tests/lib_strong/mirrors/fake_function_without_call_test.dart b/tests/lib_strong/mirrors/fake_function_without_call_test.dart
|
| index da6bd59544ea12c0b4472d29b22bd073374886ed..3cc42d5f226587cefb36419f628740eb464365d0 100644
|
| --- a/tests/lib_strong/mirrors/fake_function_without_call_test.dart
|
| +++ b/tests/lib_strong/mirrors/fake_function_without_call_test.dart
|
| @@ -23,8 +23,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);
|
|
|