| Index: tests/standalone/io/file_test.dart
|
| diff --git a/tests/standalone/io/file_test.dart b/tests/standalone/io/file_test.dart
|
| index 3b8c383469b2f1d29ede4d03f6d3565e0c0ca285..8fd698fbc39a5d0c70d8478b99697e23c095bc0b 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.createSystemTemp('dart_file').then((temp) {
|
| tempDirectory = temp;
|
| doNext();
|
| });
|
|
|