Index: tests/isolate/spawn_uri_child_isolate.dart |
diff --git a/tests/isolate/spawn_uri_child_isolate.dart b/tests/isolate/spawn_uri_child_isolate.dart |
index 9e5fc93bffca7f7d74621a844b281edb74d07dc8..ee9404318727910b6a3143a1a89996b7e8ff60ed 100644 |
--- a/tests/isolate/spawn_uri_child_isolate.dart |
+++ b/tests/isolate/spawn_uri_child_isolate.dart |
@@ -7,5 +7,5 @@ library SpawnUriChildIsolate; |
import 'dart:isolate'; |
void main() { |
- port.receive((msg, reply) => reply.send('re: $msg')); |
+ port.listen((msg) => msg[1].send('re: ${msg[0]}')); |
} |