diff --git a/test/parallel/test-fs-fchmod.js b/test/parallel/test-fs-fchmod.js index 81ac78efcb5021..8a8504027700cb 100644 --- a/test/parallel/test-fs-fchmod.js +++ b/test/parallel/test-fs-fchmod.js @@ -44,8 +44,8 @@ const fs = require('fs'); // Check for mode values range const modeUpperBoundaryValue = 0o777; -common.mustCall(() => fs.fchmod(1, modeUpperBoundaryValue); -common.mustCall(() => fs.fchmodSync(1, modeUpperBoundaryValue); +common.mustCall(() => fs.fchmod(1, modeUpperBoundaryValue)); +common.mustCall(() => fs.fchmodSync(1, modeUpperBoundaryValue)); // umask of 0o777 is equal to 775 const modeOutsideUpperBoundValue = 776;