| 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..94108dccd129d843aecb7bcbdd3a5e057b649c47 100644
|
| --- a/tests/standalone/io/file_system_watcher_test.dart
|
| +++ b/tests/standalone/io/file_system_watcher_test.dart
|
| @@ -257,6 +257,8 @@ void testWatchNonRecursive() {
|
|
|
|
|
| void testWatchNonExisting() {
|
| + // MacOS allows listening on non-existing paths.
|
| + if (Platform.isMacOS) return;
|
| asyncStart();
|
| new Directory('__some_none_existing_dir__').watch()
|
| .listen((_) {
|
|
|