diff --git a/frontend/src/hooks/tools/rotate/useRotateOperation.test.ts b/frontend/src/hooks/tools/rotate/useRotateOperation.test.ts index 642fdbada..53370ca5a 100644 --- a/frontend/src/hooks/tools/rotate/useRotateOperation.test.ts +++ b/frontend/src/hooks/tools/rotate/useRotateOperation.test.ts @@ -91,7 +91,6 @@ describe('useRotateOperation', () => { test.each([ { property: 'toolType' as const, expectedValue: ToolType.singleFile }, { property: 'endpoint' as const, expectedValue: '/api/v1/general/rotate-pdf' }, - { property: 'filePrefix' as const, expectedValue: 'rotated_' }, { property: 'operationType' as const, expectedValue: 'rotate' } ])('should configure $property correctly', ({ property, expectedValue }) => { renderHook(() => useRotateOperation());