| 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);
|
| }
|
|
|