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('*');