Index: tests/standalone/io/raw_socket_cross_process_test.dart |
diff --git a/tests/standalone/io/raw_socket_cross_process_test.dart b/tests/standalone/io/raw_socket_cross_process_test.dart |
index f92046bc4803f11068738886034e3da29981677e..df69feac6d68d2abce7d64206eb0c25595ab0525 100644 |
--- a/tests/standalone/io/raw_socket_cross_process_test.dart |
+++ b/tests/standalone/io/raw_socket_cross_process_test.dart |
@@ -49,7 +49,7 @@ Future makeServer() { |
Future runClientProcess(int port) { |
return Process.run(Platform.executable, |
[]..addAll(Platform.executableArguments) |
- ..add(Platform.script.toFilePath()) |
+ ..add(Platform.script) |
..add('--client') |
..add(port.toString())).then((ProcessResult result) { |
if (result.exitCode != 0 || !result.stdout.contains('SUCCESS')) { |