From d492cb20d5b2c7e20f4231acbc092d30e6108769 Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Fri, 31 May 2024 16:13:21 +0000 Subject: [PATCH] Remove unused parameter from check function --- test/check.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/check.mjs b/test/check.mjs index 0ed6909..fcc909a 100644 --- a/test/check.mjs +++ b/test/check.mjs @@ -47,7 +47,7 @@ function isStructurallyEqual(a, b) { return true; } -async function check(wasmFilePath, getImports) { +async function check(wasmFilePath) { const bytes = fs.readFileSync(wasmFilePath); let module; try {