| 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 fd60d1d7302b2124767c7a87b4f2b95aa1943865..7c3fd6a97a01f2dc4433fe449e5e8a76d3216bb6 100644
|
| --- a/tests/standalone/io/socket_many_connections_test.dart
|
| +++ b/tests/standalone/io/socket_many_connections_test.dart
|
| @@ -35,7 +35,7 @@ class SocketManyConnectionsTest {
|
|
|
| for (int i = 0; i < CONNECTIONS; i++) {
|
| _sockets[i] = new Socket(TestingServer.HOST, _port);
|
| - if (_sockets[i] !== null) {
|
| + if (_sockets[i] != null) {
|
| _sockets[i].onConnect = connectHandler;
|
| } else {
|
| Expect.fail("socket creation failed");
|
|
|