Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: tests/standalone/io/file_fuzz_test.dart

Issue 11364097: Allow Directory.create to create all missing path components. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/standalone/io/file_fuzz_test.dart
diff --git a/tests/standalone/io/file_fuzz_test.dart b/tests/standalone/io/file_fuzz_test.dart
index a7918fa096850dea9153a13a6122148c2cd19006..faed2ef2d07c25c1abdd93c0d0c8ab44f3efe7ce 100644
--- a/tests/standalone/io/file_fuzz_test.dart
+++ b/tests/standalone/io/file_fuzz_test.dart
@@ -84,7 +84,7 @@ fuzzSyncRandomAccessMethods() {
}
opened.closeSync();
}
- temp.deleteRecursivelySync();
+ temp.deleteSync(recursive: true);
}
fuzzAsyncRandomAccessMethods() {
@@ -115,7 +115,7 @@ fuzzAsyncRandomAccessMethods() {
for (var opened in openedFiles) {
opened.closeSync();
}
- temp.deleteRecursivelySync();
+ temp.deleteSync(recursive: true);
});
}

Powered by Google App Engine
This is Rietveld 408576698