| Index: tests/language_strong/malbounded_type_cast_test.dart
|
| diff --git a/tests/language_strong/malbounded_type_cast_test.dart b/tests/language_strong/malbounded_type_cast_test.dart
|
| index b3d55214f109084d4b46b6071e3770924b6ba3ed..1a6ebb99c97779be915bd2f9b2234dae6d9a8795 100644
|
| --- a/tests/language_strong/malbounded_type_cast_test.dart
|
| +++ b/tests/language_strong/malbounded_type_cast_test.dart
|
| @@ -18,9 +18,9 @@ main() {
|
|
|
| var expectedError;
|
| if (inCheckedMode) {
|
| - expectedError = (e) => e is TypeError;
|
| + expectedError = (e) => e is TypeError;
|
| } else {
|
| - expectedError = (e) => e is CastError;
|
| + expectedError = (e) => e is CastError;
|
| }
|
|
|
| var m = new Malbounded1();
|
|
|