diff --git a/packages/@n8n/nodes-langchain/nodes/output_parser/OutputParserAutofixing/test/OutputParserAutofixing.node.test.ts b/packages/@n8n/nodes-langchain/nodes/output_parser/OutputParserAutofixing/test/OutputParserAutofixing.node.test.ts index 537218c8e9ea2..32d25d4f73de2 100644 --- a/packages/@n8n/nodes-langchain/nodes/output_parser/OutputParserAutofixing/test/OutputParserAutofixing.node.test.ts +++ b/packages/@n8n/nodes-langchain/nodes/output_parser/OutputParserAutofixing/test/OutputParserAutofixing.node.test.ts @@ -16,7 +16,6 @@ describe('OutputParserAutofixing', () => { let thisArg: MockProxy; let mockModel: MockProxy; let mockStructuredOutputParser: MockProxy; - let realN8nOutputFixingParser: N8nOutputFixingParser; beforeEach(() => { outputParser = new OutputParserAutofixing(); @@ -35,12 +34,6 @@ describe('OutputParserAutofixing', () => { throw new ApplicationError('Unexpected connection type'); }); - - realN8nOutputFixingParser = new N8nOutputFixingParser( - thisArg, - mockModel, - mockStructuredOutputParser, - ); }); afterEach(() => {