Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Unified Diff: tests/lib/async/stream_first_where_test.dart

Issue 218273002: Upgrading tests with unittest deprecations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/lib/async/stream_first_where_test.dart
diff --git a/tests/lib/async/stream_first_where_test.dart b/tests/lib/async/stream_first_where_test.dart
index 41d732505d00aaf47b3bc75dc56a90eda98f3e96..1ec40cd60483082025e5aaf244a0a46890de8a7e 100644
--- a/tests/lib/async/stream_first_where_test.dart
+++ b/tests/lib/async/stream_first_where_test.dart
@@ -22,7 +22,7 @@ main() {
test("firstWhere with super class", () {
StreamController c = new StreamController<B>();
Future f = c.stream.firstWhere((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);
});
}

Powered by Google App Engine
This is Rietveld 408576698