diff --git a/src/modules/configuration/tests/unit/core/configurations-manager.service.spec.ts b/src/modules/configuration/tests/unit/core/configurations-manager.service.spec.ts index 9930a84..52a8133 100644 --- a/src/modules/configuration/tests/unit/core/configurations-manager.service.spec.ts +++ b/src/modules/configuration/tests/unit/core/configurations-manager.service.spec.ts @@ -93,12 +93,12 @@ describe('Configurations Manager Service', () => { expect(type).toBe(Type.INT); }); it('should throw if configuration item is not found', () => { - const dentifier: Identifier = { + const identifier: Identifier = { domain: Domain.MATCH, key: 'maxDetour', }; expect(() => { - configurationsManagerService.identifierType(dentifier); + configurationsManagerService.identifierType(identifier); }).toThrow(NotFoundException); }); });