| Index: tests/language_strong/static_initializer_type_error_test.dart
|
| diff --git a/tests/language_strong/static_initializer_type_error_test.dart b/tests/language_strong/static_initializer_type_error_test.dart
|
| index d8f668af086bb421a954191ddeec30047843660e..5afb798e3c04034043f1f399067303fbcc475aa6 100644
|
| --- a/tests/language_strong/static_initializer_type_error_test.dart
|
| +++ b/tests/language_strong/static_initializer_type_error_test.dart
|
| @@ -13,7 +13,7 @@ bool readXThrows() {
|
| return false;
|
| } catch (e) {
|
| inCheckedMode = true;
|
| - x = 5; // Make sure we do not throw exception a second time.
|
| + x = 5; // Make sure we do not throw exception a second time.
|
| return true;
|
| }
|
| }
|
| @@ -26,5 +26,5 @@ main() {
|
| }
|
| }
|
| // In checked mode throw only one exception.
|
| - Expect.equals(inCheckedMode ? 1 : 0, numExceptions);
|
| + Expect.equals(inCheckedMode ? 1 : 0, numExceptions);
|
| }
|
|
|