ci: Fix WorkflowHistoryManager tests (no-changelog) (#7356)

[DB Tests](https://github.com/n8n-io/n8n/actions/runs/6418058186)
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-10-05 13:14:57 +02:00
committed by GitHub
parent 7ebf8f327a
commit 169175080a
3 changed files with 77 additions and 164 deletions

View File

@@ -1,9 +1,9 @@
import { WorkflowHistoryRepository } from '@/databases/repositories';
import { Service } from 'typedi';
import { LessThan } from 'typeorm';
import { DateTime } from 'luxon';
import { WorkflowHistoryRepository } from '@/databases/repositories';
import { WORKFLOW_HISTORY_PRUNE_INTERVAL } from './constants';
import { getWorkflowHistoryPruneTime, isWorkflowHistoryEnabled } from './workflowHistoryHelper.ee';
import { DateTime } from 'luxon';
import { LessThan } from 'typeorm';
@Service()
export class WorkflowHistoryManager {