| Index: tests/lib/async/future_value_chain4_test.dart
|
| diff --git a/tests/lib/async/future_value_chain4_test.dart b/tests/lib/async/future_value_chain4_test.dart
|
| index 2f09cfe4fef4a9b6033f64650a896f14e0b43b54..8e640b56ea7a534b1434171b4faf68b3c29ab4b4 100644
|
| --- a/tests/lib/async/future_value_chain4_test.dart
|
| +++ b/tests/lib/async/future_value_chain4_test.dart
|
| @@ -10,8 +10,9 @@ class MyFuture implements Future {
|
| then(valueHandler, {onError}) {
|
| scheduleMicrotask(() { valueHandler(499); });
|
| }
|
| - catchError(_) => null;
|
| + catchError(_, {test}) => null;
|
| whenComplete(_) => null;
|
| + asStream() => null;
|
| }
|
|
|
| main() {
|
|
|