| Index: tests/lib/mirrors/invoke_call_through_getter_previously_accessed_test.dart
|
| diff --git a/tests/lib/mirrors/invoke_call_through_getter_previously_accessed_test.dart b/tests/lib/mirrors/invoke_call_through_getter_previously_accessed_test.dart
|
| index 893b83cba4f990b328a96c2661226b0d79b9fcad..0b78ec2d53a51336d15cb43e8bc61c3caaf8978a 100644
|
| --- a/tests/lib/mirrors/invoke_call_through_getter_previously_accessed_test.dart
|
| +++ b/tests/lib/mirrors/invoke_call_through_getter_previously_accessed_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 {
|
|
|