From a4c22799e70a93475519af10882e6db19a96ca4c Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Tue, 24 Oct 2023 12:12:18 +0200 Subject: [PATCH] fix: Correct executions table name for execution factory --- packages/backend/test/factories/execution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/test/factories/execution.ts b/packages/backend/test/factories/execution.ts index 84748831..65597e9f 100644 --- a/packages/backend/test/factories/execution.ts +++ b/packages/backend/test/factories/execution.ts @@ -6,7 +6,7 @@ export const createExecution = async (params: Partial = {}) => { params.testRun = params?.testRun || false; const [execution] = await global.knex - .table('execution') + .table('executions') .insert(params) .returning('*');