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

Unified Diff: tests/standalone/src/TimerCancel1Test.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 | « tests/standalone/src/SocketCloseTest.dart ('k') | tests/standalone/src/TimerCancel2Test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/TimerCancel1Test.dart
diff --git a/tests/standalone/src/TimerCancel1Test.dart b/tests/standalone/src/TimerCancel1Test.dart
index d67bbcaee56d69f39e0f8acfef7d3bafae58739a..1a11d21b7e2fd210221176f7c6281da110741e75 100644
--- a/tests/standalone/src/TimerCancel1Test.dart
+++ b/tests/standalone/src/TimerCancel1Test.dart
@@ -16,8 +16,8 @@ class TimerCancel1Test {
canceleeTimer.cancel();
}
- cancelerTimer = new Timer(cancelHandler, 1, false);
- canceleeTimer = new Timer(timeoutHandlerUnreachable, 1000, false);
+ cancelerTimer = new Timer(cancelHandler, 1);
+ canceleeTimer = new Timer(timeoutHandlerUnreachable, 1000);
}
static void testMain() {
« no previous file with comments | « tests/standalone/src/SocketCloseTest.dart ('k') | tests/standalone/src/TimerCancel2Test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698