| Index: tests/lib/async/run_zoned4_test.dart
|
| diff --git a/tests/lib/async/run_zoned4_test.dart b/tests/lib/async/run_zoned4_test.dart
|
| index ac96b65a493a3453a1adb10e5d5d1b176bf1a464..a5336b25ca4762c5b691c53e122dd5e501265912 100644
|
| --- a/tests/lib/async/run_zoned4_test.dart
|
| +++ b/tests/lib/async/run_zoned4_test.dart
|
| @@ -9,6 +9,6 @@ main() {
|
| // Make sure `runZoned` returns the result of a synchronous call when an
|
| // error handler is defined.
|
| Expect.equals(499,
|
| - runZonedExperimental(() => 499,
|
| - onError: (e) { throw "Unexpected"; }));
|
| + runZoned(() => 499,
|
| + onError: (e) { throw "Unexpected"; }));
|
| }
|
|
|