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

Unified Diff: tests/standalone/io/socket_exception_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_close_test.dart ('k') | tests/standalone/io/socket_many_connections_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/socket_exception_test.dart
diff --git a/tests/standalone/io/socket_exception_test.dart b/tests/standalone/io/socket_exception_test.dart
index 46d6c13de17c719e74ca889c4992a7a132c01b78..632321777e45a5d409c6c2e0c709f8b081208dec 100644
--- a/tests/standalone/io/socket_exception_test.dart
+++ b/tests/standalone/io/socket_exception_test.dart
@@ -17,7 +17,7 @@ class SocketExceptionTest {
bool wrongExceptionCaught = false;
ServerSocket server = new ServerSocket(HOST, PORT, 10);
- Expect.equals(true, server !== null);
+ Expect.equals(true, server != null);
server.close();
try {
server.close();
@@ -39,11 +39,11 @@ class SocketExceptionTest {
bool wrongExceptionCaught = false;
ServerSocket server = new ServerSocket(HOST, PORT, 10);
- Expect.equals(true, server !== null);
+ Expect.equals(true, server != null);
int port = server.port;
Socket client = new Socket(HOST, port);
client.onConnect = () {
- Expect.equals(true, client !== null);
+ Expect.equals(true, client != null);
InputStream input = client.inputStream;
OutputStream output = client.outputStream;
client.close();
@@ -120,11 +120,11 @@ class SocketExceptionTest {
bool wrongExceptionCaught = false;
ServerSocket server = new ServerSocket(HOST, PORT, 10);
- Expect.equals(true, server !== null);
+ Expect.equals(true, server != null);
int port = server.port;
Socket client = new Socket(HOST, port);
client.onConnect = () {
- Expect.equals(true, client !== null);
+ Expect.equals(true, client != null);
try {
List<int> buffer = new List<int>(10);
client.readList(buffer, -1, 1);
« no previous file with comments | « tests/standalone/io/socket_close_test.dart ('k') | tests/standalone/io/socket_many_connections_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698