| Index: tests/standalone/io/regress_7191_test.dart
|
| diff --git a/tests/standalone/io/regress_7191_test.dart b/tests/standalone/io/regress_7191_test.dart
|
| index 1595abe984fb37e1d8916166897ae68b84eea7ed..5a8a7ea1f26cd5c0cb4b9c5c19626502c48d4207 100644
|
| --- a/tests/standalone/io/regress_7191_test.dart
|
| +++ b/tests/standalone/io/regress_7191_test.dart
|
| @@ -18,7 +18,7 @@ import 'package:path/path.dart';
|
| main() {
|
| asyncStart();
|
| var executable = Platform.executable;
|
| - var script = join(dirname(Platform.script), 'regress_7191_script.dart');
|
| + var script = Platform.script.resolve('regress_7191_script.dart').toFilePath();
|
| Process.start(executable, [script]).then((process) {
|
| process.stdin.add([0]);
|
| process.stdout.listen((_) { },
|
|
|