fix little typo in test

This commit is contained in:
Sylvain Briat
2024-02-27 13:41:09 +01:00
committed by sbriat
parent 9f65699bce
commit d75ac96384

View File

@@ -93,12 +93,12 @@ describe('Configurations Manager Service', () => {
expect(type).toBe(Type.INT); expect(type).toBe(Type.INT);
}); });
it('should throw if configuration item is not found', () => { it('should throw if configuration item is not found', () => {
const dentifier: Identifier = { const identifier: Identifier = {
domain: Domain.MATCH, domain: Domain.MATCH,
key: 'maxDetour', key: 'maxDetour',
}; };
expect(() => { expect(() => {
configurationsManagerService.identifierType(dentifier); configurationsManagerService.identifierType(identifier);
}).toThrow(NotFoundException); }).toThrow(NotFoundException);
}); });
}); });