From 50f49c803d7223ba65657f615c0a22e12988d42f Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Sun, 25 Jun 2023 10:47:42 -0700 Subject: [PATCH] chore: fix arguments in whitespace test --- test/integration/whitespace.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/whitespace.js b/test/integration/whitespace.js index ae1451b1..a3541325 100644 --- a/test/integration/whitespace.js +++ b/test/integration/whitespace.js @@ -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() })