Index: tests/standalone/io/file_system_watcher_test.dart |
diff --git a/tests/standalone/io/file_system_watcher_test.dart b/tests/standalone/io/file_system_watcher_test.dart |
index 0ea8f0be1d9514fc493665759e5d04bfa498045c..4927ae978cb65834e84878e005a347e4a45fa84a 100644 |
--- a/tests/standalone/io/file_system_watcher_test.dart |
+++ b/tests/standalone/io/file_system_watcher_test.dart |
@@ -20,6 +20,7 @@ void testWatchCreateFile() { |
sub = watcher.listen((event) { |
if (event is FileSystemCreateEvent && |
event.path.endsWith('file')) { |
+ Expect.isFalse(event.isDir); |
Bill Hesse
2013/10/28 16:30:13
Will there be a test where isDir is true? There s
Anders Johnsen
2013/10/28 16:43:14
Done.
|
asyncEnd(); |
sub.cancel(); |
dir.deleteSync(recursive: true); |