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 fcae338af2d62079f1bb4cb31088453e3154a128..70715ae7056f84afed03cc0b6d7a72b4a61b5fa6 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 |
@@ -17,7 +17,7 @@ asyncWithoutAwait() async { |
testMain() { |
debugger(); |
- asyncWithoutAwait(); // Line A. |
+ asyncWithoutAwait(); // Line A. |
} |
var tests = [ |
@@ -25,7 +25,7 @@ var tests = [ |
stoppedAtLine(LINE_A), |
(isolate) => isolate.stepInto(), |
hasStoppedAtBreakpoint, |
- (isolate) => isolate.getStack(), // Should not crash. |
+ (isolate) => isolate.getStack(), // Should not crash. |
// TODO(rmacnak): stoppedAtLine(12) |
// This doesn't happen because asyncWithoutAwait is marked undebuggable. |
// Probably needs to change to support async-step-into. |