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

Unified Diff: tests/corelib_strong/file_resource_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months 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/corelib_strong/file_resource_test.dart
diff --git a/tests/corelib_strong/file_resource_test.dart b/tests/corelib_strong/file_resource_test.dart
index c9da8f71934315f2e3dedf9bb626d5a9448e40ff..067c4ad228af35214aadfaf1ba9d1c6038971916 100644
--- a/tests/corelib_strong/file_resource_test.dart
+++ b/tests/corelib_strong/file_resource_test.dart
@@ -57,7 +57,7 @@ createFile() async {
deleteFile(File file) async {
// Removes the file and the temporary directory it's in.
- var parentDir = new Directory(file.path.substring(0,
- file.path.lastIndexOf(Platform.pathSeparator)));
+ var parentDir = new Directory(
+ file.path.substring(0, file.path.lastIndexOf(Platform.pathSeparator)));
await parentDir.delete(recursive: true);
}

Powered by Google App Engine
This is Rietveld 408576698