| Index: tests/standalone/io/socket_many_connections_test.dart
|
| diff --git a/tests/standalone/io/socket_many_connections_test.dart b/tests/standalone/io/socket_many_connections_test.dart
|
| index c313fe1ed785556dca715a18e501cacaad302769..49aa34d80a7e52fc42d60dec0c818ad43c07fb7e 100644
|
| --- a/tests/standalone/io/socket_many_connections_test.dart
|
| +++ b/tests/standalone/io/socket_many_connections_test.dart
|
| @@ -17,7 +17,7 @@ class SocketManyConnectionsTest {
|
| : _receivePort = new ReceivePort(),
|
| _sendPort = null,
|
| _connections = 0,
|
| - _sockets = new List<Socket>.fixedLength(CONNECTIONS) {
|
| + _sockets = new List<Socket>(CONNECTIONS) {
|
| _sendPort = spawnFunction(startTestServer);
|
| initialize();
|
| }
|
|
|