| Index: runtime/observatory/tests/service/evaluate_in_async_star_activation_test.dart
|
| diff --git a/runtime/observatory/tests/service/evaluate_in_async_star_activation_test.dart b/runtime/observatory/tests/service/evaluate_in_async_star_activation_test.dart
|
| index de9b3972b355c74bb96fd6fe6a4e3bbe9091639c..41274a82f972f5c7e422f107e2bf15a07e98761f 100644
|
| --- a/runtime/observatory/tests/service/evaluate_in_async_star_activation_test.dart
|
| +++ b/runtime/observatory/tests/service/evaluate_in_async_star_activation_test.dart
|
| @@ -2,7 +2,6 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -import 'dart:async';
|
| import 'dart:developer';
|
| import 'package:observatory/service_io.dart';
|
| import 'package:unittest/unittest.dart';
|
| @@ -32,7 +31,7 @@ hasStoppedAtBreakpoint,
|
| var stack = await isolate.getStack();
|
| var topFrame = 0;
|
| expect(stack.type, equals('Stack'));
|
| - expect(await stack['frames'][topFrame].location.getLine(), 16);
|
| + expect(await stack['frames'][topFrame].location.getLine(), 15);
|
|
|
| var result = await isolate.evalFrame(topFrame, "x");
|
| print(result);
|
| @@ -48,7 +47,7 @@ hasStoppedAtBreakpoint,
|
| var stack = await isolate.getStack();
|
| var topFrame = 0;
|
| expect(stack.type, equals('Stack'));
|
| - expect(await stack['frames'][topFrame].location.getLine(), 19);
|
| + expect(await stack['frames'][topFrame].location.getLine(), 18);
|
|
|
| var result = await isolate.evalFrame(topFrame, "z");
|
| print(result);
|
|
|