Skip to content

Commit

Permalink
Fixed ) nit
Browse files Browse the repository at this point in the history
  • Loading branch information
lucamaraschi committed Jan 20, 2018
1 parent 6cd50ac commit cc739e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-fs-fchmod.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cc739e1

Please sign in to comment.