From cd0cd9cade01e53187dce7fb1f5a1bf95aba23fb Mon Sep 17 00:00:00 2001 From: Joshua Lochner Date: Tue, 12 Mar 2024 00:53:04 +0200 Subject: [PATCH] Fix `onnxruntime-common` import in tests --- tests/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/init.js b/tests/init.js index 2fcd8609e..7710c3223 100644 --- a/tests/init.js +++ b/tests/init.js @@ -6,7 +6,7 @@ import * as types from "node:util/types"; // Import onnxruntime-node's default backend import { onnxruntimeBackend } from "onnxruntime-node/dist/backend"; -import ONNX_COMMON from "onnxruntime-common"; +import * as ONNX_COMMON from "onnxruntime-common"; export function init() { // In rare cases (specifically when running unit tests with GitHub actions), possibly due to