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

Unified Diff: tests/standalone/io/testing_server.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/stream_pipe_test.dart ('k') | tests/standalone/io/web_socket_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/testing_server.dart
diff --git a/tests/standalone/io/testing_server.dart b/tests/standalone/io/testing_server.dart
index 22356df153ad5aa5ed0195f0732a05ded1082db1..62b240477d940101e2ce07969e0fa739850193cb 100644
--- a/tests/standalone/io/testing_server.dart
+++ b/tests/standalone/io/testing_server.dart
@@ -17,7 +17,7 @@ class TestingServer {
void dispatch(message, SendPort replyTo) {
if (message == INIT) {
_server = new ServerSocket(HOST, 0, 10);
- Expect.equals(true, _server !== null);
+ Expect.equals(true, _server != null);
_server.onConnection = onConnection;
_server.onError = errorHandlerServer;
replyTo.send(_server.port, null);
« no previous file with comments | « tests/standalone/io/stream_pipe_test.dart ('k') | tests/standalone/io/web_socket_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698