diff --git a/alfa-client/apps/admin/src/app/app.component.spec.ts b/alfa-client/apps/admin/src/app/app.component.spec.ts index cc45121d96c5ad9236bb5a834c42ab4714617175..3c1142c2c778e0941ea5f25b782279e6b1b2c2a1 100644 --- a/alfa-client/apps/admin/src/app/app.component.spec.ts +++ b/alfa-client/apps/admin/src/app/app.component.spec.ts @@ -297,7 +297,7 @@ describe('AppComponent', () => { it('should navigate to statistik if aggregation mapping link exists', () => { component._navigateByConfiguration(createConfigurationResource([ConfigurationLinkRel.AGGREGATION_MAPPINGS])); - expect(router.navigate).toHaveBeenCalledWith(['/aggregation-mapping']); + expect(router.navigate).toHaveBeenCalledWith(['/auswertung']); }); it('should navigate to unavailable page if no link exists', () => { diff --git a/alfa-client/libs/admin/shared/src/lib/routes.ts b/alfa-client/libs/admin/shared/src/lib/routes.ts index cf1a2212026d934f4f29b358a7a21b01164c811f..6802911d70124f8d8d4a37e5afc97a139173bf4f 100644 --- a/alfa-client/libs/admin/shared/src/lib/routes.ts +++ b/alfa-client/libs/admin/shared/src/lib/routes.ts @@ -28,7 +28,7 @@ export enum ROUTES { BENUTZER_ID = 'benutzer/:userid', ORGANISATIONSEINHEITEN = 'organisationseinheiten', UNAVAILABLE = 'unavailable', - AGGREGATION_MAPPING = 'aggregation-mapping', - AGGREGATION_MAPPING_NEU = 'aggregation-mapping/neu', - AGGREGATION_MAPPING_ID = 'aggregation-mapping/:aggregationMappingId', + AGGREGATION_MAPPING = 'auswertung', + AGGREGATION_MAPPING_NEU = 'auswertung/neu', + AGGREGATION_MAPPING_ID = 'auswertung/:aggregationMappingId', }