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

Unified Diff: tests/isolate/spawn_uri_vm_test.dart

Issue 36933002: All isolate tests running on vm (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments. Created 7 years, 2 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/isolate/spawn_uri_test.dart ('k') | tests/isolate/stacktrace_message_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/spawn_uri_vm_test.dart
diff --git a/tests/isolate/spawn_uri_vm_test.dart b/tests/isolate/spawn_uri_vm_test.dart
index e9bb0dac7f555658605743eebf34db65ebf0d898..ecef3e63b432ff719f68048c68be396f717fa27d 100644
--- a/tests/isolate/spawn_uri_vm_test.dart
+++ b/tests/isolate/spawn_uri_vm_test.dart
@@ -13,12 +13,12 @@ import '../../pkg/unittest/lib/unittest.dart';
main() {
test('isolate fromUri - send and reply', () {
ReceivePort port = new ReceivePort();
- port.receive(expectAsync2((msg, _) {
+ port.listen(expectAsync1((msg) {
port.close();
expect(msg, equals('re: hi'));
}));
SendPort s = spawnUri('spawn_uri_child_isolate.dart');
- s.send('hi', port.toSendPort());
+ s.send(['hi', port.sendPort]);
});
}
« no previous file with comments | « tests/isolate/spawn_uri_test.dart ('k') | tests/isolate/stacktrace_message_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698