| Index: runtime/observatory/tests/service/causal_async_stack_contents_test.dart
|
| diff --git a/runtime/observatory/tests/service/causal_async_stack_contents_test.dart b/runtime/observatory/tests/service/causal_async_stack_contents_test.dart
|
| index 9777993ca9d9bbf0a3271733a2e9e11de55d9391..2b015a0ba3e397c4143b6c5e0ca4fa8d2a80d584 100644
|
| --- a/runtime/observatory/tests/service/causal_async_stack_contents_test.dart
|
| +++ b/runtime/observatory/tests/service/causal_async_stack_contents_test.dart
|
| @@ -47,9 +47,10 @@ var tests = [
|
| // Has causal frames (we are inside an async function)
|
| expect(stack['asyncCausalFrames'], isNotNull);
|
| var asyncStack = stack['asyncCausalFrames'];
|
| - expect(asyncStack[0].toString(), contains('helper'));
|
| + expect(asyncStack[0].toString(), contains('helper_async_body'));
|
| expect(asyncStack[1].kind, equals(M.FrameKind.asyncSuspensionMarker));
|
| - expect(asyncStack[2].toString(), contains('testMain'));
|
| + expect(asyncStack[2].toString(), contains('helper'));
|
| + expect(asyncStack[3].toString(), contains('testMain'));
|
| },
|
|
|
| resumeIsolate,
|
| @@ -62,9 +63,9 @@ var tests = [
|
| expect(stack['asyncCausalFrames'], isNotNull);
|
| var asyncStack = stack['asyncCausalFrames'];
|
| expect(asyncStack[0].toString(), contains('foobar'));
|
| - expect(asyncStack[1].toString(), contains('helper'));
|
| + expect(asyncStack[1].toString(), contains('helper_async_body'));
|
| expect(asyncStack[2].kind, equals(M.FrameKind.asyncSuspensionMarker));
|
| - expect(asyncStack[3].toString(), contains('testMain'));
|
| + expect(asyncStack[3].toString(), contains('helper'));
|
| },
|
| ];
|
|
|
|
|