| 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..ecef3e63b432ff719f68048c68be396f717fa27d 100644
 | 
| --- a/tests/isolate/spawn_uri_vm_test.dart
 | 
| +++ b/tests/isolate/spawn_uri_vm_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) {
 | 
|        port.close();
 | 
|        expect(msg, equals('re: hi'));
 | 
|      }));
 | 
|  
 | 
|      SendPort s = spawnUri('spawn_uri_child_isolate.dart');
 | 
| -    s.send('hi', port.toSendPort());
 | 
| +    s.send(['hi', port.sendPort]);
 | 
|    });
 | 
|  }
 | 
| 
 |