Index: tests/standalone/io/regress_7191_script.dart |
diff --git a/tests/standalone/io/regress_7191_script.dart b/tests/standalone/io/regress_7191_script.dart |
index 7bc7a3e3091863fb1e1428056e9997ba76145f2f..9f7c78036973524873fabcdde652c631a4f494a6 100644 |
--- a/tests/standalone/io/regress_7191_script.dart |
+++ b/tests/standalone/io/regress_7191_script.dart |
@@ -11,8 +11,7 @@ main() { |
// Start sub-process when receiving data. |
var subscription; |
subscription = stdin.listen((data) { |
- var options = new Options(); |
- Process.start(options.executable, [options.script]).then((p) { |
+ Process.start(Platform.executable, [Platform.script]).then((p) { |
p.stdout.listen((_) { }); |
p.stderr.listen((_) { }); |
// When receiving data again, kill sub-process and exit. |