Skip to content

Commit 4f0f6b1

Browse files
authored
chore: fix arguments in whitespace test (#574)
1 parent 6bd1a37 commit 4f0f6b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/whitespace.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ test('range with 0', (t) => {
2929
t.throws(() => new Range(r).range)
3030
t.equal(validRange(r), null)
3131
t.throws(() => minVersion(r).version)
32-
t.equal(minSatisfying(['1.2.3']), null)
33-
t.equal(maxSatisfying(['1.2.3']), null)
32+
t.equal(minSatisfying(['1.2.3'], r), null)
33+
t.equal(maxSatisfying(['1.2.3'], r), null)
3434
t.end()
3535
})
3636

0 commit comments

Comments
 (0)