Index: tests/isolate/spawn_uri_vm_negative_test.dart |
diff --git a/tests/isolate/spawn_uri_vm_negative_test.dart b/tests/isolate/spawn_uri_vm_negative_test.dart |
index a342bfea33a2344f84d72398045061960abf9759..9bc61118e0aadf247380b31448fdb8530bad1d6c 100644 |
--- a/tests/isolate/spawn_uri_vm_negative_test.dart |
+++ b/tests/isolate/spawn_uri_vm_negative_test.dart |
@@ -13,12 +13,11 @@ import '../../pkg/unittest/lib/unittest.dart'; |
main() { |
test('isolate fromUri - negative test', () { |
ReceivePort port = new ReceivePort(); |
- port.receive(expectAsync2((msg, _) { |
- port.close(); |
+ port.first.then(expectAsync1((msg) { |
expect(msg, equals('re: hello')); // should be hi, not hello |
})); |
- 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); |
}); |
} |