test: fix unrelated variable name changes

PR-URL: https://github.com/nodejs/node/pull/18823
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
pull/18804/merge
Anatoli Papirovski 2018-02-16 15:06:25 -05:00 committed by Ruben Bridgewater
parent 69f7ce9cea
commit 94e8d2a5ff
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762
2 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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);