Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: tests/standalone/io/socket_stream_close_test.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/io/socket_many_connections_test.dart ('k') | tests/standalone/io/stream_pipe_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/socket_stream_close_test.dart
diff --git a/tests/standalone/io/socket_stream_close_test.dart b/tests/standalone/io/socket_stream_close_test.dart
index 0c1e47fb4edf4dffa02ecb42deec338497f0c3a6..ad68f2d38a307bdff4d998bcea0a586a50f1134c 100644
--- a/tests/standalone/io/socket_stream_close_test.dart
+++ b/tests/standalone/io/socket_stream_close_test.dart
@@ -142,7 +142,7 @@ class SocketClose {
}
_socket = new Socket(SocketCloseServer.HOST, _port);
- Expect.equals(true, _socket !== null);
+ Expect.equals(true, _socket != null);
_socket.onConnect = connectHandler;
}
@@ -369,7 +369,7 @@ class SocketCloseServer {
_iterations = 0;
_mode = message;
_server = new ServerSocket(HOST, 0, 10);
- Expect.equals(true, _server !== null);
+ Expect.equals(true, _server != null);
_server.onConnection = (connection) {
var data = new ConnectionData(connection);
connectionHandler(data);
« no previous file with comments | « tests/standalone/io/socket_many_connections_test.dart ('k') | tests/standalone/io/stream_pipe_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698