| Index: tests/standalone/io/file_test.dart
|
| diff --git a/tests/standalone/io/file_test.dart b/tests/standalone/io/file_test.dart
|
| index 4e3cc3d88948b6da6fc3d10bf0db6d95bf3b50cd..5305f55b028592d24bb416e300427154a2118182 100644
|
| --- a/tests/standalone/io/file_test.dart
|
| +++ b/tests/standalone/io/file_test.dart
|
| @@ -46,7 +46,7 @@ class FileTest {
|
| }
|
|
|
| static void createTempDirectory(Function doNext) {
|
| - new Directory('').createTemp().then((temp) {
|
| + Directory.systemTemp.createTemp('dart_file').then((temp) {
|
| tempDirectory = temp;
|
| doNext();
|
| });
|
|
|