| 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 b53ff17ea33ecbb70cf50b61328eb812098720de..e76f7199f0fbecdd0fe1bf54541a61ea1c6ea623 100644
|
| --- a/tests/standalone/io/file_system_watcher_test.dart
|
| +++ b/tests/standalone/io/file_system_watcher_test.dart
|
| @@ -139,6 +139,9 @@ void testWatchDeleteFile() {
|
|
|
|
|
| void testWatchDeleteDir() {
|
| + // Windows keeps the directory handle open, even though it's deleted. It'll
|
| + // be flushed completely, once the watcher is closed as well.
|
| + if (Platform.isWindows) return;
|
| var dir = Directory.systemTemp.createTempSync('dart_file_system_watcher');
|
| var watcher = dir.watch(events: 0);
|
|
|
|
|