| Index: tests/standalone/io/directory_test.dart
|
| diff --git a/tests/standalone/io/directory_test.dart b/tests/standalone/io/directory_test.dart
|
| index aaedf1cb73970c4a90b890f3938afd432f4ea6b4..ea1e21c1f0529d72bdd578b42fc46d92bf8d9f3e 100644
|
| --- a/tests/standalone/io/directory_test.dart
|
| +++ b/tests/standalone/io/directory_test.dart
|
| @@ -452,9 +452,8 @@ class NestedTempDirectoryTest {
|
| var os = Platform.operatingSystem;
|
| if (os == "windows") nestingDepth = 2;
|
| if (createdDirectories.length < nestingDepth) {
|
| - temp = new Directory(
|
| - '${temp.path}/nested_temp_dir_${createdDirectories.length}_');
|
| - temp.createTemp().then(createPhaseCallback);
|
| + temp.createTemp('nested_temp_dir_${createdDirectories.length}_')
|
| + .then(createPhaseCallback);
|
| } else {
|
| deletePhaseCallback();
|
| }
|
|
|