Skip to content

Commit f41c1de

Browse files
Refactor clientInputValidation tests to remove unnecessary type annotation
AI-Session-Id: e9b3e072-2ec0-428a-b108-9646c6de8629 AI-Tool: claude-code AI-Model: unknown
1 parent 7f1ca74 commit f41c1de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/sdkClient/__tests__/clientInputValidation.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { clientInputValidationDecorator } from '../clientInputValidation';
44
// Mocks
55
import { DebugLogger } from '../../logger/browser/DebugLogger';
66
import { createClientMock } from './testUtils';
7-
import { FallbackTreatmentsCalculator, IFallbackCalculator } from '../../evaluator/fallbackTreatmentsCalculator';
7+
import { FallbackTreatmentsCalculator } from '../../evaluator/fallbackTreatmentsCalculator';
88

99
const settings: any = {
1010
log: DebugLogger(),
@@ -14,7 +14,7 @@ const settings: any = {
1414
const EVALUATION_RESULT = 'on';
1515
const client: any = createClientMock(EVALUATION_RESULT);
1616

17-
const fallbackTreatmentsCalculator: IFallbackCalculator = FallbackTreatmentsCalculator();
17+
const fallbackTreatmentsCalculator = FallbackTreatmentsCalculator();
1818

1919
const readinessManager: any = {
2020
isReadyFromCache: () => true,

0 commit comments

Comments
 (0)