| Index: tests/standalone/io/echo_server_stream_test.dart
|
| diff --git a/tests/standalone/io/echo_server_stream_test.dart b/tests/standalone/io/echo_server_stream_test.dart
|
| index 3368b5cf84846a5f525ffdddef78ba798f287b0c..19ffcca32d0a749da65a6f512733de485cf68243 100644
|
| --- a/tests/standalone/io/echo_server_stream_test.dart
|
| +++ b/tests/standalone/io/echo_server_stream_test.dart
|
| @@ -104,7 +104,7 @@ class EchoServerGame {
|
| }
|
|
|
| _socket = new Socket(TestingServer.HOST, _port);
|
| - if (_socket !== null) {
|
| + if (_socket != null) {
|
| _socket.onConnect = connectHandler;
|
| } else {
|
| Expect.fail("socket creation failed");
|
|
|