| Index: tests/standalone/io/directory_test.dart
|
| diff --git a/tests/standalone/io/directory_test.dart b/tests/standalone/io/directory_test.dart
|
| index 4246bc60a80a53769c8ec909b7305ce5f262f8ec..73f4c4c49243bde50b3df257da96535356733921 100644
|
| --- a/tests/standalone/io/directory_test.dart
|
| +++ b/tests/standalone/io/directory_test.dart
|
| @@ -251,7 +251,9 @@ class DirectoryTest {
|
|
|
| static void testExistsCreateDeleteSync() {
|
| Directory d = new Directory("").createTempSync();
|
| + Directory d2 = new Directory('${d.path}/');
|
| Expect.isTrue(d.existsSync());
|
| + Expect.isTrue(d2.existsSync());
|
| Directory created = new Directory("${d.path}/subdir");
|
| created.createSync();
|
| Expect.isTrue(created.existsSync());
|
|
|