| Index: runtime/observatory/tests/service/step_into_async_no_await_test.dart
|
| diff --git a/runtime/observatory/tests/service/step_into_async_no_await_test.dart b/runtime/observatory/tests/service/step_into_async_no_await_test.dart
|
| index f9dddd564e97173c4cb66f0dc0a61705d0117cc0..fcae338af2d62079f1bb4cb31088453e3154a128 100644
|
| --- a/runtime/observatory/tests/service/step_into_async_no_await_test.dart
|
| +++ b/runtime/observatory/tests/service/step_into_async_no_await_test.dart
|
| @@ -5,6 +5,9 @@
|
|
|
| import 'test_helper.dart';
|
| import 'dart:developer';
|
| +import 'service_test_common.dart';
|
| +
|
| +const int LINE_A = 20;
|
|
|
| // :async_op will not be captured in this function because it never needs to
|
| // reschedule it.
|
| @@ -14,12 +17,12 @@ asyncWithoutAwait() async {
|
|
|
| testMain() {
|
| debugger();
|
| - asyncWithoutAwait(); // Line 17
|
| + asyncWithoutAwait(); // Line A.
|
| }
|
|
|
| var tests = [
|
| hasStoppedAtBreakpoint,
|
| - stoppedAtLine(17),
|
| + stoppedAtLine(LINE_A),
|
| (isolate) => isolate.stepInto(),
|
| hasStoppedAtBreakpoint,
|
| (isolate) => isolate.getStack(), // Should not crash.
|
|
|