Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1611)

Unified Diff: runtime/observatory/tests/service/step_over_await_test.dart

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/service/step_over_await_test.dart
diff --git a/runtime/observatory/tests/service/step_over_await_test.dart b/runtime/observatory/tests/service/step_over_await_test.dart
index f1e8d7ceea177103e7c9e1735d031753fba5e12e..d5f946cb937cc51fc4b6030c71b17d6d5397f833 100644
--- a/runtime/observatory/tests/service/step_over_await_test.dart
+++ b/runtime/observatory/tests/service/step_over_await_test.dart
@@ -19,9 +19,9 @@ const int LINE_B = 24;
// This tests the asyncStepOver command.
asyncFunction() async {
debugger();
- print('a'); // LINE_A
+ print('a'); // LINE_A
await new Future.delayed(new Duration(seconds: 2));
- print('b'); // LINE_B
+ print('b'); // LINE_B
}
testMain() {
@@ -31,9 +31,9 @@ testMain() {
var tests = [
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_A),
- stepOver, // At new Duration().
- stepOver, // At new Future.delayed().
- stepOver, // At async.
+ stepOver, // At new Duration().
+ stepOver, // At new Future.delayed().
+ stepOver, // At async.
// Check that we are at the async statement
(Isolate isolate) async {
expect(M.isAtAsyncSuspension(isolate.pauseEvent), isTrue);
« no previous file with comments | « runtime/observatory/tests/service/step_into_async_no_await_test.dart ('k') | runtime/observatory/tests/service/step_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698