Skip to content

Commit c1b480f

Browse files
committed
Fixed unit test in rdi.service.spec
1 parent e0af732 commit c1b480f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisinsight/api/src/modules/rdi/rdi.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ describe('RdiService', () => {
7474
it('should throw an error if Rdi instance is not found', async () => {
7575
repository.get.mockResolvedValue(undefined);
7676

77-
await expect(service.get('123')).rejects.toThrowError('TBD not found');
77+
await expect(service.get('123')).rejects.toThrowError('RDI with id 123 was not found');
7878
});
7979
});
8080

0 commit comments

Comments
 (0)