Chromium Code Reviews| Index: tests/language/try_catch5_test.dart |
| =================================================================== |
| --- tests/language/try_catch5_test.dart (revision 22436) |
| +++ tests/language/try_catch5_test.dart (working copy) |
| @@ -30,6 +30,8 @@ |
| } |
| main() { |
| - a = 0; |
| - Expect.isTrue(foo1()); |
| + for (var i = 0; i < 2000; i++) { |
| + a = 0; |
| + Expect.isTrue(foo1()); |
| + } |
| } |