Skip to content

Commit 24c8dc6

Browse files
authored
fix typo priority
1 parent bcca0dd commit 24c8dc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-os.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ assert.ok(hostname.length > 0);
8787

8888
const DUMMY_PRIORITY = 10
8989
os.setPriority(DUMMY_PRIORITY)
90-
const proiority = os.getPriority()
91-
is.number(proiority)
92-
assert.ok(proiority === DUMMY_PRIORITY)
90+
const priority = os.getPriority()
91+
is.number(priority)
92+
assert.ok(priority === DUMMY_PRIORITY)
9393

9494
// On IBMi, os.uptime() returns 'undefined'
9595
if (!common.isIBMi) {

0 commit comments

Comments
 (0)