| Index: tests/compiler/dart2js_extra/regress/4515_2_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/regress/4515_2_test.dart b/tests/compiler/dart2js_extra/regress/4515_2_test.dart
|
| index b30b89a608b848a63327f2caed66d5f8676ba526..fb271a109cd9f811ad9a63c5f66d6415e4cb08b5 100644
|
| --- a/tests/compiler/dart2js_extra/regress/4515_2_test.dart
|
| +++ b/tests/compiler/dart2js_extra/regress/4515_2_test.dart
|
| @@ -12,5 +12,5 @@ main() {
|
| A a = new A();
|
| a.a(1);
|
| Expect.throws(
|
| - () => print(f((x) => (a.a(x)))), (e) => e is NoSuchMethodException);
|
| + () => print(f((x) => (a.a(x)))), (e) => e is NoSuchMethodError);
|
| }
|
|
|