| Index: tests/lib/async/run_zoned9_test.dart
|
| diff --git a/tests/lib/async/run_zoned9_test.dart b/tests/lib/async/run_zoned9_test.dart
|
| index 67e389425b24d82e1ef83cd28b9d3c9d2efcde89..1ab97953cdb4bcb3c84c068a27bdc5d755643304 100644
|
| --- a/tests/lib/async/run_zoned9_test.dart
|
| +++ b/tests/lib/async/run_zoned9_test.dart
|
| @@ -24,13 +24,11 @@ main() {
|
| Expect.equals(0, e);
|
| Expect.isTrue(sawInnerHandler);
|
| // If we are waiting for an error, don't asyncEnd, but let it time out.
|
| - if (false) //# 01: runtime error
|
| + throw e; //# 01: ok
|
| asyncEnd();
|
| - throw e; // //# 01: continued
|
| });
|
| } catch (e) {
|
| - // We should never see an error here.
|
| - if (false) // //# 01: continued
|
| + asyncEnd(); return; //# 01: continued
|
| rethrow;
|
| }
|
| }
|
|
|