diff --git a/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts b/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts index 138e1ae410..e1841e503e 100644 --- a/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts +++ b/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts @@ -268,20 +268,6 @@ describe('Hubspot v1 - GenericFunctions', () => { }); }); - it('should return associations with some fields missing', () => { - const associations = { - companyIds: '1,2,3', - contactIds: '10,11,12', - }; - - const result = getAssociations(associations); - - expect(result).toEqual({ - companyIds: ['1', '2', '3'], - contactIds: ['10', '11', '12'], - }); - }); - it('should return associations with empty fields', () => { const associations = { companyIds: '', diff --git a/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts b/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts index 1b79f8bc8a..b8534df4e3 100644 --- a/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts +++ b/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts @@ -268,20 +268,6 @@ describe('Hubspot v2 - GenericFunctions', () => { }); }); - it('should return associations with some fields missing', () => { - const associations = { - companyIds: '1,2,3', - contactIds: '10,11,12', - }; - - const result = getAssociations(associations); - - expect(result).toEqual({ - companyIds: ['1', '2', '3'], - contactIds: ['10', '11', '12'], - }); - }); - it('should return associations with empty fields', () => { const associations = { companyIds: '',