Skip to content

Commit 94e8d2a

Browse files
apapirovskiBridgeAR
authored andcommitted
test: fix unrelated variable name changes
PR-URL: #18823 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 69f7ce9 commit 94e8d2a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/parallel/test-process-geteuid-getegid.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ assert.notStrictEqual(newgid, oldgid);
4444

4545
const olduid = process.geteuid();
4646
process.seteuid('nobody');
47-
const newAsyncId = process.geteuid();
48-
assert.notStrictEqual(newAsyncId, olduid);
47+
const newuid = process.geteuid();
48+
assert.notStrictEqual(newuid, olduid);

test/parallel/test-process-setuid-setgid.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ assert.notStrictEqual(newgid, oldgid);
6363

6464
const olduid = process.getuid();
6565
process.setuid('nobody');
66-
const newAsyncId = process.getuid();
67-
assert.notStrictEqual(newAsyncId, olduid);
66+
const newuid = process.getuid();
67+
assert.notStrictEqual(newuid, olduid);

0 commit comments

Comments
 (0)