Skip to content

Commit b1f4bc2

Browse files
committed
fix tests
1 parent 26cbbfe commit b1f4bc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisinsight/api/src/modules/cloud/session/repositories/local.cloud.session.repository.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('LocalCloudSessionRepository', () => {
3838

3939
encryptionService.decrypt.mockImplementation((value) => value);
4040
when(encryptionService.decrypt)
41-
.calledWith(mockCloudSessionEntity.data, jasmine.anything())
41+
.calledWith(mockCloudSessionEntity.data, expect.anything())
4242
.mockResolvedValue(JSON.stringify(mockCloudSessionData.data));
4343

4444
encryptionService.encrypt.mockImplementation((value) => value);

0 commit comments

Comments
 (0)