Index: pkg/analyzer/test/file_system/memory_file_system_test.dart |
diff --git a/pkg/analyzer/test/file_system/memory_file_system_test.dart b/pkg/analyzer/test/file_system/memory_file_system_test.dart |
index 4b1dc37a839846308f3dd2929696fa475c8714ba..b17d39ef757949fc456c66b0bfc8c26d638d61c9 100644 |
--- a/pkg/analyzer/test/file_system/memory_file_system_test.dart |
+++ b/pkg/analyzer/test/file_system/memory_file_system_test.dart |
@@ -14,12 +14,10 @@ import 'package:path/path.dart'; |
import 'package:unittest/unittest.dart'; |
import 'package:watcher/watcher.dart'; |
- |
var _isFile = new isInstanceOf<File>(); |
var _isFileSystemException = new isInstanceOf<FileSystemException>(); |
var _isFolder = new isInstanceOf<Folder>(); |
- |
main() { |
groupSep = ' | '; |
@@ -34,13 +32,11 @@ main() { |
var exception = new FileSystemException('/my/path', 'my message'); |
expect(exception.path, '/my/path'); |
expect(exception.message, 'my message'); |
- expect( |
- exception.toString(), |
+ expect(exception.toString(), |
'FileSystemException(path=/my/path; message=my message)'); |
}); |
group('Watch', () { |
- |
Future delayed(computation()) { |
return new Future.delayed(Duration.ZERO, computation); |
} |