| Index: tests/standalone/io/testing_server.dart
|
| diff --git a/tests/standalone/io/testing_server.dart b/tests/standalone/io/testing_server.dart
|
| index 79f0175304e24af9cf80fc2f4db33c95c58be07c..c8bd2b65352d6a2a71e5467bf33810ff58665fc6 100644
|
| --- a/tests/standalone/io/testing_server.dart
|
| +++ b/tests/standalone/io/testing_server.dart
|
| @@ -21,7 +21,7 @@ abstract class TestingServer {
|
|
|
| void dispatch(message, SendPort replyTo) {
|
| if (message == INIT) {
|
| - ServerSocket.bind(HOST, 0, 10).then((server) {
|
| + ServerSocket.bind(HOST, 0).then((server) {
|
| _server = server;
|
| _server.listen(
|
| onConnection,
|
|
|