mirror of
https://gitlab.com/mobicoop/v3/service/configuration.git
synced 2026-01-08 00:42:40 +00:00
fix little typo in test
This commit is contained in:
@@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user