| Index: tests/lib/async/stream_last_where_test.dart
|
| diff --git a/tests/lib/async/stream_last_where_test.dart b/tests/lib/async/stream_last_where_test.dart
|
| index c02d6082ec73493972d93430de86b3fd12171a37..a4ec00aab508a9f0132220d0a9feea542f62beb3 100644
|
| --- a/tests/lib/async/stream_last_where_test.dart
|
| +++ b/tests/lib/async/stream_last_where_test.dart
|
| @@ -22,7 +22,7 @@ main() {
|
| test("lastWhere with super class", () {
|
| StreamController c = new StreamController<B>();
|
| Future f = c.stream.lastWhere((x) => false, defaultValue: () => const A());
|
| - f.then(expectAsync1((v) { Expect.equals(const A(), v); }));
|
| + f.then(expectAsync((v) { Expect.equals(const A(), v); }));
|
| sentEvents.replay(c);
|
| });
|
| }
|
|
|