| 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 4e6abf1970713f2e74c693e4daaa1ffefcf87ef9..781f734577b6b8ea44e3d2ee244aadd16b6462c4 100644
|
| --- a/tests/standalone/io/regress_7191_test.dart
|
| +++ b/tests/standalone/io/regress_7191_test.dart
|
| @@ -11,12 +11,12 @@
|
|
|
| import 'dart:io';
|
| import 'dart:isolate';
|
| +import 'package:path/path.dart';
|
|
|
| main() {
|
| var port = new ReceivePort();
|
| var executable = Platform.executable;
|
| - var scriptDir = new Path(Platform.script).directoryPath;
|
| - var script = scriptDir.append('regress_7191_script.dart').toNativePath();
|
| + var script = join(dirname(Platform.script), 'regress_7191_script.dart');
|
| Process.start(executable, [script]).then((process) {
|
| process.stdin.add([0]);
|
| process.stdout.listen((_) { },
|
|
|