Index: tests/lib/async/catch_errors27_test.dart |
diff --git a/tests/lib/async/catch_errors27_test.dart b/tests/lib/async/catch_errors27_test.dart |
index 65bfbfba8139641f65339028c29251730b533994..9a8ab8b734357ecb1e078218d8aaecebd39017cf 100644 |
--- a/tests/lib/async/catch_errors27_test.dart |
+++ b/tests/lib/async/catch_errors27_test.dart |
@@ -31,7 +31,7 @@ main() { |
.transform(new StreamTransformer.fromHandlers( |
handleError: (e, st, sink) { sink.add("error $e"); })) |
.listen((x) { events.add("stream $x"); }); |
- runAsync(() { |
+ scheduleMicrotask(() { |
controller.add(1); |
// Errors are not allowed to traverse boundaries, but in this case the |
// first listener of the broadcast stream is in the same error-zone. So |