fix little typo in test
This commit is contained in:
parent
9f65699bce
commit
d75ac96384
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue