| Index: tests/lib/async/catch_errors24_test.dart
|
| diff --git a/tests/lib/async/catch_errors24_test.dart b/tests/lib/async/catch_errors24_test.dart
|
| index 675d3a1c97d175bc68ba32f16aaa452c7de9b1d9..2e07ed6ce18aff90dfe0f796c1acf99c814db159 100644
|
| --- a/tests/lib/async/catch_errors24_test.dart
|
| +++ b/tests/lib/async/catch_errors24_test.dart
|
| @@ -25,8 +25,8 @@ main() {
|
| events.add("map $x");
|
| return x + 100;
|
| })
|
| - .transform(new StreamTransformer(
|
| - handleError: (e, sink) => sink.add("error $e")))
|
| + .transform(new StreamTransformer.fromHandlers(
|
| + handleError: (e, st, sink) { sink.add("error $e"); }))
|
| .asBroadcastStream();
|
| runAsync(() {
|
| stream.listen((x) {
|
|
|