summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-watchfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-fs-watchfile.js')
-rw-r--r--test/parallel/test-fs-watchfile.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/test/parallel/test-fs-watchfile.js b/test/parallel/test-fs-watchfile.js
index 4d684f2f5a..43e2594463 100644
--- a/test/parallel/test-fs-watchfile.js
+++ b/test/parallel/test-fs-watchfile.js
@@ -20,20 +20,20 @@ assert.throws(function() {
const enoentFile = path.join(common.tmpDir, 'non-existent-file');
const expectedStatObject = new fs.Stats(
- 0, // dev
- 0, // mode
- 0, // nlink
- 0, // uid
- 0, // gid
- 0, // rdev
- common.isWindows ? undefined : 0, // blksize
- 0, // ino
- 0, // size
- common.isWindows ? undefined : 0, // blocks
- Date.UTC(1970, 0, 1, 0, 0, 0), // atime
- Date.UTC(1970, 0, 1, 0, 0, 0), // mtime
- Date.UTC(1970, 0, 1, 0, 0, 0), // ctime
- Date.UTC(1970, 0, 1, 0, 0, 0) // birthtime
+ 0, // dev
+ 0, // mode
+ 0, // nlink
+ 0, // uid
+ 0, // gid
+ 0, // rdev
+ common.isWindows ? undefined : 0, // blksize
+ 0, // ino
+ 0, // size
+ common.isWindows ? undefined : 0, // blocks
+ Date.UTC(1970, 0, 1, 0, 0, 0), // atime
+ Date.UTC(1970, 0, 1, 0, 0, 0), // mtime
+ Date.UTC(1970, 0, 1, 0, 0, 0), // ctime
+ Date.UTC(1970, 0, 1, 0, 0, 0) // birthtime
);
common.refreshTmpDir();