| Index: pkg/watcher/test/utils.dart
|
| diff --git a/pkg/watcher/test/utils.dart b/pkg/watcher/test/utils.dart
|
| index d1b9f94b8429f3adfb5f6018b0baddc59ab8f42c..3070d790636ec19323e1cad670245021234e06bc 100644
|
| --- a/pkg/watcher/test/utils.dart
|
| +++ b/pkg/watcher/test/utils.dart
|
| @@ -176,7 +176,7 @@ void inAnyOrder(block()) {
|
| void expectEvent(ChangeType type, String path) {
|
| var matcher = predicate((e) {
|
| return e is WatchEvent && e.type == type &&
|
| - e.path == p.join(_sandboxDir, path);
|
| + e.path == p.join(_sandboxDir, p.normalize(path));
|
| }, "is $type $path");
|
|
|
| if (_unorderedEventFuture != null) {
|
|
|