We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb98f27 commit 124e637Copy full SHA for 124e637
test/known_issues/test-fs-copyfile-respect-permissions.js
@@ -23,7 +23,7 @@ function beforeEach() {
23
fs.chmodSync(dest, '444');
24
25
const check = (err) => {
26
- assert.strictEqual(err.code, 'EACCESS');
+ assert.strictEqual(err.code, 'EACCES');
27
assert.strictEqual(fs.readFileSync(dest, 'utf8'), 'dest');
28
};
29
0 commit comments