Index: tests/isolate/spawn_function_custom_class_test.dart |
diff --git a/tests/isolate/spawn_function_custom_class_test.dart b/tests/isolate/spawn_function_custom_class_test.dart |
index 78c3042e536168dfaac67a2cac99ec51c22f2c90..9e83b6fcdce6dfa59a37ca7b43b9741e0b2a07e1 100644 |
--- a/tests/isolate/spawn_function_custom_class_test.dart |
+++ b/tests/isolate/spawn_function_custom_class_test.dart |
@@ -18,21 +18,19 @@ class MyClass { |
} |
} |
-child() { |
- port.receive((msg, reply) { |
- reply.send('re: ${new MyClass().myFunc(msg)}'); |
- }); |
+child(args) { |
+ var reply = args[1]; |
+ var msg = args[0]; |
+ reply.send('re: ${new MyClass().myFunc(msg)}'); |
} |
main() { |
test('message - reply chain', () { |
ReceivePort port = new ReceivePort(); |
- port.receive((msg, _) { |
+ Isolate.spawn(child, ['hi', port.sendPort]); |
+ port.listen((msg) { |
port.close(); |
expect(msg, equals('re: hi there')); |
}); |
- |
- SendPort s = spawnFunction(child); |
- s.send('hi', port.toSendPort()); |
}); |
} |