| Index: tests/language/is_nan_test.dart
|
| diff --git a/tests/language/is_nan_test.dart b/tests/language/is_nan_test.dart
|
| index cebbf4c1b03ba087f92e8243b1d309dbd121933e..f4fa0f784f0106ed37223cb23d059f7361377da8 100644
|
| --- a/tests/language/is_nan_test.dart
|
| +++ b/tests/language/is_nan_test.dart
|
| @@ -9,7 +9,7 @@ class A {
|
| main() {
|
| Expect.isTrue(foo(double.NAN));
|
| Expect.isFalse(foo(new A()));
|
| - Expect.throws(() => foo('bar'), (e) => e is NoSuchMethodException);
|
| + Expect.throws(() => foo('bar'), (e) => e is NoSuchMethodError);
|
| }
|
|
|
| foo(a) => a.isNaN();
|
|
|