Index: tests/lib/async/catch_errors.dart |
diff --git a/tests/lib/async/catch_errors.dart b/tests/lib/async/catch_errors.dart |
index ec11859fd427758ea4ef141c6e135a0c855ff891..0b0288fd83bfeff0d31b7db8bce1d4c39c3a197e 100644 |
--- a/tests/lib/async/catch_errors.dart |
+++ b/tests/lib/async/catch_errors.dart |
@@ -5,7 +5,7 @@ import 'dart:async'; |
Stream catchErrors(void body()) { |
StreamController controller; |
- bool onError(e) { |
+ bool onError(e, st) { |
controller.add(e); |
return true; |
} |