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

Unified Diff: test/stream_zip_test.dart

Issue 2161283002: Fix Dart 1.17 strong-mode warnings. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « test/stream_splitter_test.dart ('k') | test/subscription_stream_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/stream_zip_test.dart
diff --git a/test/stream_zip_test.dart b/test/stream_zip_test.dart
index 47f3d8dc6f3de5c2622fd7ebbff3282e77bc531d..a00d8bd65f9894f75c2e04325a6757991236ec3a 100644
--- a/test/stream_zip_test.dart
+++ b/test/stream_zip_test.dart
@@ -36,7 +36,7 @@ int ctr = 0;
main() {
// Test that zipping [streams] gives the results iterated by [expectedData].
- testZip(Iterable streams, Iterable expectedData) {
+ testZip(Iterable<Stream> streams, Iterable expectedData) {
List data = [];
Stream zip = new StreamZip(streams);
zip.listen(data.add, onDone: expectAsync(() {
« no previous file with comments | « test/stream_splitter_test.dart ('k') | test/subscription_stream_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698