Skip to content

Commit

Permalink
fix typo priority
Browse files Browse the repository at this point in the history
  • Loading branch information
waelsy123 authored and aduh95 committed Sep 20, 2023
1 parent 40d821e commit 02b52c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-os.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ assert.ok(hostname.length > 0);

const DUMMY_PRIORITY = 10
os.setPriority(DUMMY_PRIORITY)
const proiority = os.getPriority()
is.number(proiority)
assert.ok(proiority === DUMMY_PRIORITY)
const priority = os.getPriority()
is.number(priority)
assert.ok(priority === DUMMY_PRIORITY)

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

0 comments on commit 02b52c4

Please sign in to comment.