From cc739e1cb43fc0b2b6a2214a92dd4f5c6522a10d Mon Sep 17 00:00:00 2001 From: Luca Maraschi Date: Thu, 18 Jan 2018 08:32:59 -0800 Subject: [PATCH] Fixed ) nit --- test/parallel/test-fs-fchmod.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;