| Index: tests/language/local_function_test.dart
|
| diff --git a/tests/language/local_function_test.dart b/tests/language/local_function_test.dart
|
| index 7bf997429055e7883e7b123574325f8dee6c3763..c694e2ca62771fd8d853e5287b0bf6159fdd9403 100644
|
| --- a/tests/language/local_function_test.dart
|
| +++ b/tests/language/local_function_test.dart
|
| @@ -156,7 +156,7 @@ class LocalFunctionTest {
|
| exception_caught = false;
|
| try {
|
| f.xyz(0);
|
| - } on NoSuchMethodException catch (e) {
|
| + } on NoSuchMethodError catch (e) {
|
| exception_caught = true;
|
| }
|
| Expect.equals(true, exception_caught);
|
|
|