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

Unified Diff: tests/standalone/io/socket_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/process_stdout_test.dart ('k') | tests/standalone/io/socket_exception_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/socket_close_test.dart
diff --git a/tests/standalone/io/socket_close_test.dart b/tests/standalone/io/socket_close_test.dart
index 5996173810f1063bae49174630bdedea5c716f6d..21f4fb78ad64959c36959122db7bde2fde3a40c4 100644
--- a/tests/standalone/io/socket_close_test.dart
+++ b/tests/standalone/io/socket_close_test.dart
@@ -140,7 +140,7 @@ class SocketClose {
}
_socket = new Socket(SocketCloseServer.HOST, _port);
- Expect.equals(true, _socket !== null);
+ Expect.equals(true, _socket != null);
_socket.onConnect = connectHandler;
}
@@ -345,7 +345,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/process_stdout_test.dart ('k') | tests/standalone/io/socket_exception_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698