| Index: tests/compiler/dart2js_extra/this_phi_elimination_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/this_phi_elimination_test.dart b/tests/compiler/dart2js_extra/this_phi_elimination_test.dart
|
| index 950bd6b1aae129de042d7191bd1104a975188633..eaac2ba246d9dd4403f50b2d79617b2126758803 100644
|
| --- a/tests/compiler/dart2js_extra/this_phi_elimination_test.dart
|
| +++ b/tests/compiler/dart2js_extra/this_phi_elimination_test.dart
|
| @@ -15,5 +15,5 @@ class A {
|
|
|
| main() {
|
| Expect.equals(42, new A().foo(0));
|
| - Expect.throws(() => new A().foo(""), (e) => e is NoSuchMethodException);
|
| + Expect.throws(() => new A().foo(""), (e) => e is NoSuchMethodError);
|
| }
|
|
|