| Index: tests/isolate/spawn_uri_vm_test.dart | 
| diff --git a/tests/isolate/spawn_uri_vm_test.dart b/tests/isolate/spawn_uri_vm_test.dart | 
| index e9bb0dac7f555658605743eebf34db65ebf0d898..f72c3d8b1f21b41dcf286d0f30fa07da2052953b 100644 | 
| --- a/tests/isolate/spawn_uri_vm_test.dart | 
| +++ b/tests/isolate/spawn_uri_vm_test.dart | 
| @@ -13,12 +13,11 @@ import '../../pkg/unittest/lib/unittest.dart'; | 
| main() { | 
| test('isolate fromUri - send and reply', () { | 
| ReceivePort port = new ReceivePort(); | 
| -    port.receive(expectAsync2((msg, _) { | 
| -      port.close(); | 
| +    port.first.then(expectAsync1((msg) { | 
| expect(msg, equals('re: hi')); | 
| })); | 
|  | 
| -    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); | 
| }); | 
| } | 
|  |