| 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..de249c601e849ebc492b6908a3fef3dad46de8cf 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]);
|
| });
|
| }
|
|
|