| Index: tests/standalone/src/SocketCloseTest.dart
|
| diff --git a/tests/standalone/src/SocketCloseTest.dart b/tests/standalone/src/SocketCloseTest.dart
|
| index d329d331956c2a75e734c298a937e3fac0c80afe..8e5732932a6618e31539e86becd593d3ac4054e6 100644
|
| --- a/tests/standalone/src/SocketCloseTest.dart
|
| +++ b/tests/standalone/src/SocketCloseTest.dart
|
| @@ -48,7 +48,7 @@ class SocketClose {
|
|
|
| void proceed() {
|
| if (_iterations < ITERATIONS) {
|
| - new Timer(sendData, 0, false);
|
| + new Timer(sendData, 0);
|
| } else {
|
| shutdown();
|
| }
|
| @@ -305,7 +305,7 @@ class SocketCloseServer extends Isolate {
|
| _server.close();
|
| this.port.close();
|
| } else {
|
| - new Timer(waitForResult, 100, false);
|
| + new Timer(waitForResult, 100);
|
| }
|
| }
|
|
|
| @@ -322,7 +322,7 @@ class SocketCloseServer extends Isolate {
|
| _server.errorHandler = errorHandlerServer;
|
| replyTo.send(_server.port, null);
|
| } else {
|
| - new Timer(waitForResult, 0, false);
|
| + new Timer(waitForResult, 0);
|
| }
|
| });
|
| }
|
|
|