| Index: tests/lib/async/run_zoned5_test.dart
|
| diff --git a/tests/lib/async/run_zoned5_test.dart b/tests/lib/async/run_zoned5_test.dart
|
| index 6106a06295ea2686f8f4dc4c3cccc0b43c68befd..6a18d5cff2e401b6eba1ee44b5b428b84ca8fae2 100644
|
| --- a/tests/lib/async/run_zoned5_test.dart
|
| +++ b/tests/lib/async/run_zoned5_test.dart
|
| @@ -9,9 +9,9 @@ import 'dart:async';
|
| main() {
|
| asyncStart();
|
| // Ensure that `runZoned`'s onError handles synchronous errors.
|
| - runZonedExperimental(() { throw 0; },
|
| - onError: (e) {
|
| - Expect.equals(0, e);
|
| - asyncEnd();
|
| - });
|
| + runZoned(() { throw 0; },
|
| + onError: (e) {
|
| + Expect.equals(0, e);
|
| + asyncEnd();
|
| + });
|
| }
|
|
|