From a64aec0173e4338f6635faf1dc3f90e8ca519341 Mon Sep 17 00:00:00 2001 From: Dean Date: Mon, 13 May 2024 16:39:30 +0100 Subject: [PATCH] Test fix --- .../utilities/rowProcessor/tests/attachments.spec.ts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/packages/server/src/utilities/rowProcessor/tests/attachments.spec.ts b/packages/server/src/utilities/rowProcessor/tests/attachments.spec.ts index 7d4217c244..a8baba2625 100644 --- a/packages/server/src/utilities/rowProcessor/tests/attachments.spec.ts +++ b/packages/server/src/utilities/rowProcessor/tests/attachments.spec.ts @@ -75,13 +75,11 @@ const rowGenerators: [ "signature", function rowWithSignature(): Row { return { - signature: [ - { - size: 1, - extension: "png", - key: `${uuid.v4()}.png`, - }, - ], + signature: { + size: 1, + extension: "png", + key: `${uuid.v4()}.png`, + }, } }, ],