| Index: tests/lib/mirrors/invoke_call_through_getter_test.dart
|
| diff --git a/tests/lib/mirrors/invoke_call_through_getter_test.dart b/tests/lib/mirrors/invoke_call_through_getter_test.dart
|
| index c0652994698bf4c010a674d02020b742545a4ba2..287e212ed8e22014ca65e99db648adcf7f887bff 100644
|
| --- a/tests/lib/mirrors/invoke_call_through_getter_test.dart
|
| +++ b/tests/lib/mirrors/invoke_call_through_getter_test.dart
|
| @@ -55,10 +55,10 @@ testInstanceReflective() {
|
| im.invoke(#closureNamed, [14, 15], {#w: 16}).reflectee); /// named: continued
|
| Expect.equals('DNU',
|
| im.invoke(#doesNotExist, [17, 18]).reflectee);
|
| - Expect.throws(() => im.invoke(#closure, ['wrong arity']), /// getter_call_stub: ok
|
| - (e) => e is NoSuchMethodError); /// getter_call_stub: continued
|
| - Expect.throws(() => im.invoke(#notAClosure, []), /// getter_call_stub: continued
|
| - (e) => e is NoSuchMethodError); /// getter_call_stub: continued
|
| + Expect.throws(() => im.invoke(#closure, ['wrong arity']),
|
| + (e) => e is NoSuchMethodError);
|
| + Expect.throws(() => im.invoke(#notAClosure, []),
|
| + (e) => e is NoSuchMethodError);
|
| }
|
|
|
| class D {
|
|
|