We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a05b66d commit a3b43d5Copy full SHA for a3b43d5
test/parallel/test-fs-lchmod.js
@@ -46,7 +46,7 @@ assert.throws(() => fs.lchmod(f, {}), { code: 'ERR_INVALID_CALLBACK' });
46
assert.throws(() => fs.lchmodSync(f, input), errObj);
47
});
48
49
-assert.throws(() => fs.lchmod(f, '123x'), {
+assert.throws(() => fs.lchmod(f, '123x', common.mustNotCall()), {
50
code: 'ERR_INVALID_ARG_VALUE'
51
52
assert.throws(() => fs.lchmodSync(f, '123x'), {
0 commit comments