| Index: tests/standalone/src/io/TimerTest.dart
|
| diff --git a/tests/standalone/src/io/TimerTest.dart b/tests/standalone/src/io/TimerTest.dart
|
| index aed248ff0a9afd3a1b5221878bfde5f1c66eb40e..44f9673ae3e79ce2fe7292b9e5b4c1abadf8864c 100644
|
| --- a/tests/standalone/src/io/TimerTest.dart
|
| +++ b/tests/standalone/src/io/TimerTest.dart
|
| @@ -19,14 +19,14 @@ class TimerTest {
|
| _iteration++;
|
| _timeout = _timeout - _DECREASE;
|
| _startTime = (new Date.now()).value;
|
| - new Timer(timeoutHandler, _timeout);
|
| + new Timer(_timeout, timeoutHandler);
|
| }
|
| }
|
|
|
| _iteration = 0;
|
| _timeout = _STARTTIMEOUT;
|
| _startTime = (new Date.now()).value;
|
| - new Timer(timeoutHandler, _timeout);
|
| + new Timer(_timeout, timeoutHandler);
|
| }
|
|
|
| static void testMain() {
|
|
|