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

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

Issue 23896002: Fix errors in dart:io tests found by the analyzer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 months 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/raw_socket_test.dart ('k') | tests/standalone/io/socket_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/raw_socket_typed_data_test.dart
diff --git a/tests/standalone/io/raw_socket_typed_data_test.dart b/tests/standalone/io/raw_socket_typed_data_test.dart
index e511d0cd6803af8f42090bc85e68a5c44ef2670a..11b6b3eb39995cf9001c5d5d013a466e540ee9c3 100644
--- a/tests/standalone/io/raw_socket_typed_data_test.dart
+++ b/tests/standalone/io/raw_socket_typed_data_test.dart
@@ -15,6 +15,7 @@ import "package:async_helper/async_helper.dart";
import "package:expect/expect.dart";
testOutOfRange() {
+ asyncStart();
RawServerSocket.bind(InternetAddress.LOOPBACK_IP_V4, 0).then((server) {
server.listen((client) {
client.writeEventsEnabled = false;
@@ -79,7 +80,7 @@ testOutOfRange() {
default: throw "Unexpected event $event";
}
},
- onDone: () => port.close());
+ onDone: asyncEnd);
});
});
}
@@ -206,7 +207,7 @@ void testSimpleReadWrite() {
default: throw "Unexpected event $event";
}
},
- onDone: () => asyncEnd());
+ onDone: asyncEnd);
});
});
}
« no previous file with comments | « tests/standalone/io/raw_socket_test.dart ('k') | tests/standalone/io/socket_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698