Skip to content

Commit

Permalink
test: fix unrelated variable name changes
Browse files Browse the repository at this point in the history
PR-URL: nodejs#18823
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
apapirovski authored and MayaLekova committed May 8, 2018
1 parent c956636 commit 6b11b5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-process-geteuid-getegid.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ assert.notStrictEqual(newgid, oldgid);

const olduid = process.geteuid();
process.seteuid('nobody');
const newAsyncId = process.geteuid();
assert.notStrictEqual(newAsyncId, olduid);
const newuid = process.geteuid();
assert.notStrictEqual(newuid, olduid);
4 changes: 2 additions & 2 deletions test/parallel/test-process-setuid-setgid.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ assert.notStrictEqual(newgid, oldgid);

const olduid = process.getuid();
process.setuid('nobody');
const newAsyncId = process.getuid();
assert.notStrictEqual(newAsyncId, olduid);
const newuid = process.getuid();
assert.notStrictEqual(newuid, olduid);

0 comments on commit 6b11b5d

Please sign in to comment.