| Index: tests/standalone/io/directory_list_pause_test.dart
|
| diff --git a/tests/standalone/io/directory_list_pause_test.dart b/tests/standalone/io/directory_list_pause_test.dart
|
| index 5c5bf78ead7b47645d5987cfcdc6878c3a4f0a99..8845b2bfcd3c71ecc941f715151431aae4e351e5 100644
|
| --- a/tests/standalone/io/directory_list_pause_test.dart
|
| +++ b/tests/standalone/io/directory_list_pause_test.dart
|
| @@ -13,7 +13,7 @@ void testPauseList() {
|
| asyncStart();
|
| // TOTAL should be bigger the our directory listing buffer.
|
| const int TOTAL = 128;
|
| - new Directory("").createTemp().then((d) {
|
| + Directory.createSystemTemp('dart_directory_list_pause').then((d) {
|
| for (int i = 0; i < TOTAL; i++) {
|
| new Directory("${d.path}/$i").createSync();
|
| new File("${d.path}/$i/file").createSync();
|
|
|