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 dbdc19b792a93cf52fed98818b9161da00ab9497..3ac354d4549b8d592ee11c151bffe1d2096d2fe1 100644 |
--- a/runtime/observatory/tests/service/async_next_test.dart |
+++ b/runtime/observatory/tests/service/async_next_test.dart |
@@ -26,16 +26,17 @@ testMain() { |
asyncNext(Isolate isolate) async { |
print('asyncNext'); |
- List asyncStepFutures = await isolate.asyncStepOver(); |
- return asyncStepFutures[Isolate.kSecondResume]; |
+ return asyncStepOver(isolate); |
} |
var tests = [ |
hasStoppedAtBreakpoint, |
stoppedAtLine(14), |
+ stepOver, // foo() |
asyncNext, |
hasStoppedAtBreakpoint, |
stoppedAtLine(15), |
+ stepOver, // foo() |
asyncNext, |
hasStoppedAtBreakpoint, |
stoppedAtLine(16), |