From 4f0f6b19a54b1ba7e1c62af2dfba61f7a4fa68d5 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Mon, 26 Jun 2023 06:58:42 -0700 Subject: [PATCH] chore: fix arguments in whitespace test (#574) --- 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() })