From d1fb7d2e5df34164fc984dc5b77ca3a32fd0491b Mon Sep 17 00:00:00 2001 From: James Brunton Date: Wed, 17 Sep 2025 10:58:35 +0100 Subject: [PATCH] Fix test --- frontend/src/hooks/tools/rotate/useRotateOperation.test.ts | 1 - 1 file changed, 1 deletion(-) 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());