Index: tests/standalone/io/socket_cross_process_test.dart |
diff --git a/tests/standalone/io/socket_cross_process_test.dart b/tests/standalone/io/socket_cross_process_test.dart |
index d6899c6a46eafb5dbd3b01d54172c9d16e9c58f7..013c9f44f87dc739b7723f52366cf3c0b91408cd 100644 |
--- a/tests/standalone/io/socket_cross_process_test.dart |
+++ b/tests/standalone/io/socket_cross_process_test.dart |
@@ -36,7 +36,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')) { |