From 165bbfdc2f89f7c18020175f606be87b91fd40a0 Mon Sep 17 00:00:00 2001 From: shrinktofit Date: Fri, 15 Sep 2023 19:09:14 +0800 Subject: [PATCH] Fix --- tests/utils/pal-wasm-testing.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/utils/pal-wasm-testing.ts b/tests/utils/pal-wasm-testing.ts index f19a1ed14b6..3cd441fff95 100644 --- a/tests/utils/pal-wasm-testing.ts +++ b/tests/utils/pal-wasm-testing.ts @@ -22,7 +22,7 @@ THE SOFTWARE. */ -import { checkPalIntegrity, withImpl } from '@pal/utils'; +import { checkPalIntegrity, withImpl } from '../../pal/integrity-check'; import { join } from 'node:path'; import { readFileSync } from 'node:fs'; @@ -50,4 +50,4 @@ export async function ensureWasmModuleReady() { return Promise.resolve(); } -checkPalIntegrity(withImpl()); +checkPalIntegrity(withImpl());