Skip to content

Commit b1183ac

Browse files
Masashi HiranoTimothyGu
Masashi Hirano
authored andcommitted
test: call fsPromises.lchown() on non-Windows
1 parent d195aca commit b1183ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-fs-promises.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function verifyStatObject(stat) {
159159
if (common.canCreateSymLink()) {
160160
const newLink = path.resolve(tmpDir, 'baz3.js');
161161
await symlink(newPath, newLink);
162-
if (common.isOSX) {
162+
if (!common.isWindows) {
163163
await lchown(newLink, process.getuid(), process.getgid());
164164
}
165165
stats = await lstat(newLink);

0 commit comments

Comments
 (0)