Index: tests/isolate/spawn_uri_multi_test.dart |
diff --git a/tests/isolate/spawn_uri_multi_test.dart b/tests/isolate/spawn_uri_multi_test.dart |
index fc95962dc1246604293ce685cf1ddeb0bcc961e3..8ec5bf8d957594c6126501a3b5ac49883dae2d25 100644 |
--- a/tests/isolate/spawn_uri_multi_test.dart |
+++ b/tests/isolate/spawn_uri_multi_test.dart |
@@ -17,7 +17,7 @@ import 'spawn_uri_child_isolate.dart'; |
main() { |
test('isolate fromUri - negative test', () { |
ReceivePort port = new ReceivePort(); |
- port.receive(expectAsync2((msg, _) { |
+ port.listen(expectAsync1((msg) { |
String expectedMessage = 're: hi'; |
// Should be hi, not hello. |
expectedMessage = 're: hello'; /// 01: runtime error |
@@ -26,6 +26,6 @@ main() { |
})); |
SendPort s = spawnUri('spawn_uri_child_isolate.dart'); |
- s.send('hi', port.toSendPort()); |
+ s.send(['hi', port.sendPort]); |
}); |
} |