Index: tests/isolate/spawn_uri_nested_child2_vm_isolate.dart |
diff --git a/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart b/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart |
index 87efa5bad7eecf3c9eea7ba28cde20481a822dc2..f42aa14491a5cafe10e7220ddcd97fddf53f0383 100644 |
--- a/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart |
+++ b/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart |
@@ -7,5 +7,5 @@ library NestedSpawnUriChild2Library; |
import 'dart:isolate'; |
void main() { |
- port.receive((msg, reply) => reply.send('re: $msg')); |
+ port.receive((msg) => msg[1].send('re: ${msg[0]}')); |
} |