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

Unified Diff: tests/standalone/src/MultipleTimerTest.dart

Issue 8992007: Make the repeating argument to timers optional. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments. Created 9 years 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 | « samples/socket/SocketExample.dart ('k') | tests/standalone/src/SocketCloseTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/MultipleTimerTest.dart
diff --git a/tests/standalone/src/MultipleTimerTest.dart b/tests/standalone/src/MultipleTimerTest.dart
index b6d274f6a18ff5c10c94e8cbece8be0f996c77e1..7aeb65e160f50be240c705614f8a00a7728ab3b0 100644
--- a/tests/standalone/src/MultipleTimerTest.dart
+++ b/tests/standalone/src/MultipleTimerTest.dart
@@ -47,13 +47,13 @@ class MultipleTimerTest {
_message = 0;
_startTime1 = (new Date.now()).value;
- new Timer(timeoutHandler1, TIMEOUT1, false);
+ new Timer(timeoutHandler1, TIMEOUT1);
_startTime2 = (new Date.now()).value;
- new Timer(timeoutHandler2, TIMEOUT2, false);
+ new Timer(timeoutHandler2, TIMEOUT2);
_startTime3 = (new Date.now()).value;
- new Timer(timeoutHandler3, TIMEOUT3, false);
+ new Timer(timeoutHandler3, TIMEOUT3);
_startTime4 = (new Date.now()).value;
- new Timer(timeoutHandler4, TIMEOUT4, false);
+ new Timer(timeoutHandler4, TIMEOUT4);
}
static void testMain() {
« no previous file with comments | « samples/socket/SocketExample.dart ('k') | tests/standalone/src/SocketCloseTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698