| Index: runtime/observatory/tests/service/get_isolate_after_stack_overflow_error_test.dart
|
| diff --git a/runtime/observatory/tests/service/get_isolate_after_stack_overflow_error_test.dart b/runtime/observatory/tests/service/get_isolate_after_stack_overflow_error_test.dart
|
| index 6588ee0d022bf2909e7c712c7ba28ede7052b35f..0223218d210765602f7245cef3f60584ca5a2694 100644
|
| --- a/runtime/observatory/tests/service/get_isolate_after_stack_overflow_error_test.dart
|
| +++ b/runtime/observatory/tests/service/get_isolate_after_stack_overflow_error_test.dart
|
| @@ -19,6 +19,7 @@ void nonTailableRecursion() {
|
|
|
| var tests = [
|
| hasStoppedAtExit,
|
| +
|
| (Isolate isolate) async {
|
| await isolate.reload();
|
| expect(isolate.error, isNotNull);
|
| @@ -26,5 +27,7 @@ var tests = [
|
| }
|
| ];
|
|
|
| -main(args) async => runIsolateTests(args, tests,
|
| - pause_on_exit: true, testeeConcurrent: nonTailableRecursion);
|
| +main(args) async => runIsolateTests(args,
|
| + tests,
|
| + pause_on_exit: true,
|
| + testeeConcurrent: nonTailableRecursion);
|
|
|