Index: runtime/observatory/tests/service/get_isolate_after_async_error_test.dart |
diff --git a/runtime/observatory/tests/service/get_isolate_after_async_error_test.dart b/runtime/observatory/tests/service/get_isolate_after_async_error_test.dart |
index 1e5ef8844588a39822c3768eb58b3f560fdb4a9f..a0c531d16e0c5114dc22cb86424b2fe75116ed06 100644 |
--- a/runtime/observatory/tests/service/get_isolate_after_async_error_test.dart |
+++ b/runtime/observatory/tests/service/get_isolate_after_async_error_test.dart |
@@ -14,6 +14,7 @@ doThrow() async { |
var tests = [ |
hasStoppedAtExit, |
+ |
(Isolate isolate) async { |
await isolate.reload(); |
expect(isolate.error, isNotNull); |
@@ -21,5 +22,7 @@ var tests = [ |
} |
]; |
-main(args) async => runIsolateTests(args, tests, |
- pause_on_exit: true, testeeConcurrent: doThrow); |
+main(args) async => runIsolateTests(args, |
+ tests, |
+ pause_on_exit: true, |
+ testeeConcurrent: doThrow); |