From 4aa45bfae93344dcac9f2ccb5c50b70ab69003c7 Mon Sep 17 00:00:00 2001 From: Yaros Date: Tue, 24 Mar 2026 13:44:51 +0100 Subject: [PATCH] test: fix asset.service test --- server/test/small.factory.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/test/small.factory.ts b/server/test/small.factory.ts index e4001d18ab..656d023bae 100644 --- a/server/test/small.factory.ts +++ b/server/test/small.factory.ts @@ -200,6 +200,7 @@ const assetSidecarWriteFactory = () => { const assetOcrFactory = ( ocr: { id?: string; + updateId?: string; assetId?: string; x1?: number; y1?: number; @@ -216,6 +217,7 @@ const assetOcrFactory = ( } = {}, ) => ({ id: newUuid(), + updateId: newUuidV7(), assetId: newUuid(), x1: 0.1, y1: 0.2,