From 4369c6d9f64f1d6dd769aadefe4031dcc04ed6ee Mon Sep 17 00:00:00 2001 From: jakub-g Date: Fri, 10 Dec 2021 18:27:54 +0100 Subject: [PATCH] doc: fix comments in test-fs-watch.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41046 Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: Anto Aravinth Reviewed-By: Rich Trott Reviewed-By: Tobias Nießen --- test/parallel/test-fs-watch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-fs-watch.js b/test/parallel/test-fs-watch.js index 6fcf6c4df63fdc..479cc2b3e293e2 100644 --- a/test/parallel/test-fs-watch.js +++ b/test/parallel/test-fs-watch.js @@ -22,14 +22,14 @@ class WatchTestCase { } const cases = [ - // Watch on a directory should callback with a filename on supported systems + // Watch on a file should callback with a filename on supported systems new WatchTestCase( common.isLinux || common.isOSX || common.isWindows || common.isAIX, 'watch1', 'foo', 'filePath' ), - // Watch on a file should callback with a filename on supported systems + // Watch on a directory should callback with a filename on supported systems new WatchTestCase( common.isLinux || common.isOSX || common.isWindows, 'watch2',