| Index: tests/language/naming_test.dart
|
| diff --git a/tests/language/naming_test.dart b/tests/language/naming_test.dart
|
| index ead2c5732b14a3a568df50923737de01091e0e78..65a43288264e1a612c8bc3bd658d9fc08f32aa29 100644
|
| --- a/tests/language/naming_test.dart
|
| +++ b/tests/language/naming_test.dart
|
| @@ -515,8 +515,8 @@ class Naming2Test {
|
| // We check for both exceptions because the exact exception to
|
| // throw is hard to compute on some browsers.
|
| // Also, ObjectNotClosureException should probably implement
|
| - // NoSuchMethodException.
|
| - (e) => e is ObjectNotClosureException || e is NoSuchMethodException);
|
| + // NoSuchMethodError.
|
| + (e) => e is ObjectNotClosureException || e is NoSuchMethodError);
|
| }
|
| }
|
|
|
|
|