| Index: tests/standalone/src/TimerTest.dart
|
| diff --git a/tests/standalone/src/TimerTest.dart b/tests/standalone/src/TimerTest.dart
|
| index 8b0c55467ea1bde664e224279aa2ae190ad5e28b..53ca27bdfb0dcba3de51d14102c85dd1cd2a564e 100644
|
| --- a/tests/standalone/src/TimerTest.dart
|
| +++ b/tests/standalone/src/TimerTest.dart
|
| @@ -17,14 +17,14 @@ class TimerTest {
|
| _iteration++;
|
| _timeout = _timeout - _DECREASE;
|
| _startTime = (new Date.now()).value;
|
| - new Timer(timeoutHandler, _timeout, false);
|
| + new Timer(timeoutHandler, _timeout);
|
| }
|
| }
|
|
|
| _iteration = 0;
|
| _timeout = _STARTTIMEOUT;
|
| _startTime = (new Date.now()).value;
|
| - new Timer(timeoutHandler, _timeout, false);
|
| + new Timer(timeoutHandler, _timeout);
|
| }
|
|
|
| static void testMain() {
|
|
|