| 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 f2a8a23837ed9e4541ba755a5630180f4ceab914..f9dddd564e97173c4cb66f0dc0a61705d0117cc0 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
|
| @@ -3,7 +3,6 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
| // VMOptions=--error_on_bad_type --error_on_bad_override --verbose_debug
|
|
|
| -import 'package:observatory/service_io.dart';
|
| import 'test_helper.dart';
|
| import 'dart:developer';
|
|
|
| @@ -15,12 +14,12 @@ asyncWithoutAwait() async {
|
|
|
| testMain() {
|
| debugger();
|
| - asyncWithoutAwait();
|
| + asyncWithoutAwait(); // Line 17
|
| }
|
|
|
| var tests = [
|
| hasStoppedAtBreakpoint,
|
| - stoppedAtLine(18),
|
| + stoppedAtLine(17),
|
| (isolate) => isolate.stepInto(),
|
| hasStoppedAtBreakpoint,
|
| (isolate) => isolate.getStack(), // Should not crash.
|
|
|