From ab53c654ee44cceaf2086f478d47a232755a80ef Mon Sep 17 00:00:00 2001 From: hided62 Date: Sat, 15 Aug 2026 06:50:25 +0000 Subject: [PATCH] test: import item inventory from owner module --- tools/integration-tests/test/auctionFlow.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/integration-tests/test/auctionFlow.test.ts b/tools/integration-tests/test/auctionFlow.test.ts index 33984e73..13232b65 100644 --- a/tools/integration-tests/test/auctionFlow.test.ts +++ b/tools/integration-tests/test/auctionFlow.test.ts @@ -28,11 +28,13 @@ import { } from '@sammo-ts/infra'; import { buildNeutralResourceAuctionPlan, - createItemInventoryFromSlots, ItemLoader, ITEM_KEYS, - serializeItemInventory, } from '@sammo-ts/logic'; +import { + createItemInventoryFromSlots, + serializeItemInventory, +} from '@sammo-ts/logic/items/inventory.js'; const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); const workspaceRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../../..');