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

Unified Diff: tests/isolate/spawn_uri_test.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address Anders' comment. 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
Index: tests/isolate/spawn_uri_test.dart
diff --git a/tests/isolate/spawn_uri_test.dart b/tests/isolate/spawn_uri_test.dart
index a68f34f9864be9650dd6249b243ed8728fd74b54..ddc5c177195dbcd4fe2b30e5f6607c65a53c7de7 100644
--- a/tests/isolate/spawn_uri_test.dart
+++ b/tests/isolate/spawn_uri_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) {
expect(msg, equals('re: hi'));
port.close();
}));
- SendPort s = spawnUri('spawn_uri_child_isolate.dart');
- s.send('hi', port.toSendPort());
+ Isolate.spawnUri(Uri.parse('spawn_uri_child_isolate.dart'),
+ ['hi'], port.sendPort);
});
}

Powered by Google App Engine
This is Rietveld 408576698