diff --git a/libs/common/src/key-management/crypto/models/enc-string.spec.ts b/libs/common/src/key-management/crypto/models/enc-string.spec.ts index e5de9387227..da36f863ed1 100644 --- a/libs/common/src/key-management/crypto/models/enc-string.spec.ts +++ b/libs/common/src/key-management/crypto/models/enc-string.spec.ts @@ -98,19 +98,6 @@ describe("EncString", () => { encryptService, ); }); - - it("decrypts correctly", async () => { - const decrypted = await encString.decrypt(null); - - expect(decrypted).toBe("decrypted"); - }); - - it("result should be cached", async () => { - const decrypted = await encString.decrypt(null); - expect(encryptService.decryptString).toBeCalledTimes(1); - - expect(decrypted).toBe("decrypted"); - }); }); });