| Index: runtime/observatory/tests/service/issue_27238_test.dart
|
| diff --git a/runtime/observatory/tests/service/issue_27238_test.dart b/runtime/observatory/tests/service/issue_27238_test.dart
|
| index 77302ae82864ddb21a81bb4a233a410bd1e92017..01945a6b779d92adcd190cf40da855074e7f3647 100644
|
| --- a/runtime/observatory/tests/service/issue_27238_test.dart
|
| +++ b/runtime/observatory/tests/service/issue_27238_test.dart
|
| @@ -16,11 +16,11 @@ const int LINE_E = 26;
|
|
|
| testMain() async {
|
| debugger();
|
| - Future future1 = new Future.value(); // LINE_A.
|
| + Future future1 = new Future.value(); // LINE_A.
|
| Future future2 = new Future.value();
|
|
|
| - await future1; // LINE_B.
|
| - await future2; // LINE_C.
|
| + await future1; // LINE_B.
|
| + await future2; // LINE_C.
|
|
|
| print('foo1'); // LINE_D.
|
| print('foo2'); // LINE_E.
|
|
|