| Index: runtime/observatory/tests/service/async_next_test.dart
|
| diff --git a/runtime/observatory/tests/service/async_next_test.dart b/runtime/observatory/tests/service/async_next_test.dart
|
| index f3c64d92777b49c6d7b76a760ef702b09d3c349a..dbdc19b792a93cf52fed98818b9161da00ab9497 100644
|
| --- a/runtime/observatory/tests/service/async_next_test.dart
|
| +++ b/runtime/observatory/tests/service/async_next_test.dart
|
| @@ -26,7 +26,8 @@ testMain() {
|
|
|
| asyncNext(Isolate isolate) async {
|
| print('asyncNext');
|
| - return isolate.asyncStepOver()[Isolate.kSecondResume];
|
| + List asyncStepFutures = await isolate.asyncStepOver();
|
| + return asyncStepFutures[Isolate.kSecondResume];
|
| }
|
|
|
| var tests = [
|
|
|