Skip to content

Commit

Permalink
chore: fix arguments in whitespace test (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Jun 26, 2023
1 parent 6bd1a37 commit 4f0f6b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/whitespace.js
Expand Up @@ -29,8 +29,8 @@ test('range with 0', (t) => {
t.throws(() => new Range(r).range)
t.equal(validRange(r), null)
t.throws(() => minVersion(r).version)
t.equal(minSatisfying(['1.2.3']), null)
t.equal(maxSatisfying(['1.2.3']), null)
t.equal(minSatisfying(['1.2.3'], r), null)
t.equal(maxSatisfying(['1.2.3'], r), null)
t.end()
})

Expand Down

0 comments on commit 4f0f6b1

Please sign in to comment.