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

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

Issue 903433002: Change timer delay to 0 to make jsshell happy. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/stream_iterator_double_cancel_test.dart
diff --git a/tests/lib/async/stream_iterator_double_cancel_test.dart b/tests/lib/async/stream_iterator_double_cancel_test.dart
index 4b88802d811c588eb9fbc2ac9a548bca1bac5825..16bb5730c7ddd4ca4b912cfbb14348926e3d2c24 100644
--- a/tests/lib/async/stream_iterator_double_cancel_test.dart
+++ b/tests/lib/async/stream_iterator_double_cancel_test.dart
@@ -16,7 +16,7 @@ Stream timedStream(int n) {
}
controller.add(i);
i++;
- new Future.delayed(new Duration(milliseconds: 10), tick);
+ new Future.delayed(new Duration(milliseconds: 0), tick);
}
controller = new StreamController(onListen: tick);
return controller.stream;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698