| Index: runtime/observatory/tests/service/set_library_debuggable_test.dart
|
| diff --git a/runtime/observatory/tests/service/set_library_debuggable_test.dart b/runtime/observatory/tests/service/set_library_debuggable_test.dart
|
| index 6873e446438fa77e566030bf5484cf4f949dede7..a21c10c1dc95b0fe3db759e860a19c09d45ca356 100644
|
| --- a/runtime/observatory/tests/service/set_library_debuggable_test.dart
|
| +++ b/runtime/observatory/tests/service/set_library_debuggable_test.dart
|
| @@ -32,12 +32,12 @@ var tests = [
|
| await dartCore.reload();
|
| expect(dartCore.debuggable, equals(true));
|
| },
|
| - stoppedInFunction('testMain', contains:true),
|
| + stoppedInFunction('testMain', contains:true, includeOwner: true),
|
| stoppedAtLine(LINE_A),
|
| stepInto,
|
| stoppedInFunction('print'),
|
| stepOut,
|
| - stoppedInFunction('testMain', contains:true),
|
| + stoppedInFunction('testMain', contains:true, includeOwner: true),
|
| stoppedAtLine(LINE_B),
|
| (Isolate isolate) async {
|
| // Mark 'dart:core' as not debuggable.
|
| @@ -57,10 +57,10 @@ var tests = [
|
| await dartCore.reload();
|
| expect(dartCore.debuggable, equals(false));
|
| },
|
| - stoppedInFunction('testMain', contains:true),
|
| + stoppedInFunction('testMain', contains:true, includeOwner: true),
|
| stoppedAtLine(LINE_B),
|
| stepInto,
|
| - stoppedInFunction('testMain', contains:true),
|
| + stoppedInFunction('testMain', contains:true, includeOwner: true),
|
| stoppedAtLine(LINE_C),
|
| ];
|
|
|
|
|