diff --git a/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts b/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts index 2d1988127..d8c98fabb 100644 --- a/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts +++ b/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts @@ -11,7 +11,7 @@ import SSOFileModification from '@app/unraid-api/unraid-file-modifier/modificati import { existsSync } from 'fs'; interface ModificationTestCase { - ModificationClass: typeof FileModification; + ModificationClass: new (...args: ConstructorParameters) => FileModification; fileUrl: string; }