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

Unified Diff: tests/isolate/timer_not_available_test.dart

Issue 11866003: Support Timer with 0 millisecond delay in dart2js running in the command line. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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/isolate/timer_not_available_test.dart
===================================================================
--- tests/isolate/timer_not_available_test.dart (revision 16956)
+++ tests/isolate/timer_not_available_test.dart (working copy)
@@ -9,7 +9,7 @@
main() {
bool failed = false;
try {
- new Timer(0, (_) { });
+ new Timer(5, (_) { });
} on UnsupportedError catch (e) {
failed = true;
}

Powered by Google App Engine
This is Rietveld 408576698