| Index: tests/standalone/io/windows_file_system_async_links_test.dart
|
| diff --git a/tests/standalone/io/windows_file_system_async_links_test.dart b/tests/standalone/io/windows_file_system_async_links_test.dart
|
| index 44fb229f9b93ef7f7f26648e2d919171924d3f1b..a578df218812f598a592713542a73e1a3307cca1 100644
|
| --- a/tests/standalone/io/windows_file_system_async_links_test.dart
|
| +++ b/tests/standalone/io/windows_file_system_async_links_test.dart
|
| @@ -27,7 +27,9 @@ class FutureExpect {
|
|
|
|
|
| Future testJunctionTypeDelete() {
|
| - return new Directory('').createTemp().then((temp) {
|
| + return Directory.systemTemp
|
| + .createTemp('dart_windows_file_system_async_links')
|
| + .then((temp) {
|
| var x = '${temp.path}${Platform.pathSeparator}x';
|
| var y = '${temp.path}${Platform.pathSeparator}y';
|
| return new Directory(x).create()
|
|
|