| Index: pkg/watcher/test/directory_watcher/mac_os_test.dart
|
| diff --git a/pkg/watcher/test/directory_watcher/mac_os_test.dart b/pkg/watcher/test/directory_watcher/mac_os_test.dart
|
| index 077787a29e6c624bb364fe556a6384af7ef6d18c..3590f44b811ad6bf939c70e26caa3e2de5c45677 100644
|
| --- a/pkg/watcher/test/directory_watcher/mac_os_test.dart
|
| +++ b/pkg/watcher/test/directory_watcher/mac_os_test.dart
|
| @@ -46,14 +46,10 @@ main() {
|
| renameDir("dir/sub", "sub");
|
| renameDir("sub", "dir/sub");
|
|
|
| - inAnyOrder(() {
|
| - withPermutations((i, j, k) =>
|
| - expectRemoveEvent("dir/sub/sub-$i/sub-$j/file-$k.txt"));
|
| - });
|
| -
|
| - inAnyOrder(() {
|
| - withPermutations((i, j, k) =>
|
| - expectAddEvent("dir/sub/sub-$i/sub-$j/file-$k.txt"));
|
| - });
|
| + inAnyOrder(withPermutations((i, j, k) =>
|
| + isRemoveEvent("dir/sub/sub-$i/sub-$j/file-$k.txt")));
|
| +
|
| + inAnyOrder(withPermutations((i, j, k) =>
|
| + isAddEvent("dir/sub/sub-$i/sub-$j/file-$k.txt")));
|
| });
|
| }
|
|
|