From 66d70ffc444e73e0ea7a7d977431f2c8d560f4f7 Mon Sep 17 00:00:00 2001 From: dumbmoron Date: Thu, 8 Aug 2024 16:35:19 +0000 Subject: [PATCH] test: update match() call format --- api/src/util/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/util/test.js b/api/src/util/test.js index c0f06498..eb1474b4 100644 --- a/api/src/util/test.js +++ b/api/src/util/test.js @@ -43,7 +43,7 @@ for (let i in services) { throw `Invalid URL: ${chck.url}` } - let j = await match(parsed.host, parsed.patternMatch, "en", chck); + let j = await match(parsed.host, parsed.patternMatch, chck); console.log('\nReceived:'); console.log(j) if (j.status === test.expected.code && j.body.status === test.expected.status) {