From 8b9af3b04cdac76af688ad02b85268581058c84c Mon Sep 17 00:00:00 2001 From: Yana De Pauw Date: Mon, 17 Feb 2025 12:59:58 +0100 Subject: [PATCH] Remove circulary dependency --- ...enu-section-Index.model.ts => menu-section-index.model.ts} | 0 src/app/shared/menu/menu.structure.spec.ts | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/app/shared/menu/{menu-section-Index.model.ts => menu-section-index.model.ts} (100%) diff --git a/src/app/shared/menu/menu-section-Index.model.ts b/src/app/shared/menu/menu-section-index.model.ts similarity index 100% rename from src/app/shared/menu/menu-section-Index.model.ts rename to src/app/shared/menu/menu-section-index.model.ts diff --git a/src/app/shared/menu/menu.structure.spec.ts b/src/app/shared/menu/menu.structure.spec.ts index 51ab2b2afe..c11b18590e 100644 --- a/src/app/shared/menu/menu.structure.spec.ts +++ b/src/app/shared/menu/menu.structure.spec.ts @@ -100,12 +100,12 @@ describe('buildMenuStructure', () => { ]; - it('should have a double amount of objects with an additional service after the processing', () => { + it('should have a double amount of objects after the processing', () => { const result = buildMenuStructure(providerStructure); expect(result.length).toEqual(orderedProviderTypeList.length * 2); }); - it('should return a list with the MenuProviderService and then a resolved provider and provider type for each provider in the provided structure', () => { + it('should return a list with a resolved provider and provider type for each provider in the provided structure', () => { const result = buildMenuStructure(providerStructure); orderedProviderTypeList.forEach((provider, index) => {