| Index: tests/compiler/dart2js_extra/regress/4515_1_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/regress/4515_1_test.dart b/tests/compiler/dart2js_extra/regress/4515_1_test.dart
|
| index 73c5bb0c366bc8923bfe936f4cc52bc4c822f487..41faa955bbe362a6d0b13ccd3c5c2dbfdb81dc8e 100644
|
| --- a/tests/compiler/dart2js_extra/regress/4515_1_test.dart
|
| +++ b/tests/compiler/dart2js_extra/regress/4515_1_test.dart
|
| @@ -11,5 +11,5 @@ f(p) => p("A");
|
| main() {
|
| A a = new A();
|
| a.a(1);
|
| - Expect.throws(() => print(f(a.a)), (e) => e is NoSuchMethodException);
|
| + Expect.throws(() => print(f(a.a)), (e) => e is NoSuchMethodError);
|
| }
|
|
|