| Index: tests/language/private_main.dart
|
| diff --git a/tests/language/private_main.dart b/tests/language/private_main.dart
|
| index 7bca65cdf10e31ab561a33ca958344075b77d854..531cbb0c0ebddb74cd066ac68a16b278afe26100 100644
|
| --- a/tests/language/private_main.dart
|
| +++ b/tests/language/private_main.dart
|
| @@ -29,7 +29,7 @@ class PrivateMain {
|
| } catch (e, trace) {
|
| print(e);
|
| print(trace);
|
| - Expect.equals(true, e is NoSuchMethodException);
|
| + Expect.equals(true, e is NoSuchMethodError);
|
| value = -1;
|
| }
|
| Expect.equals("Another Ring", value);
|
| @@ -43,7 +43,7 @@ class PrivateMain {
|
| } catch (e, trace) {
|
| print(e);
|
| print(trace);
|
| - Expect.equals(true, e is NoSuchMethodException);
|
| + Expect.equals(true, e is NoSuchMethodError);
|
| value = -1;
|
| }
|
| Expect.equals(-1, value);
|
|
|