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);
|
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);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue