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

Unified Diff: tests/standalone/io/file_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_test.dart
diff --git a/tests/standalone/io/file_test.dart b/tests/standalone/io/file_test.dart
index 02ee65fe5e3713fe6851b98e143dea3692d4ba63..2f210f42e91db84d852c1df17ae93ad7cbedc100 100644
--- a/tests/standalone/io/file_test.dart
+++ b/tests/standalone/io/file_test.dart
@@ -36,7 +36,7 @@ class FileTest {
}
static void deleteTempDirectory() {
- tempDirectory.deleteRecursivelySync();
+ tempDirectory.deleteSync(recursive: true);
}
// Test for file read functionality.

Powered by Google App Engine
This is Rietveld 408576698