1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-30 16:23:53 +00:00

Fix UUID format in cipher.service.spec.ts

This commit is contained in:
Nik Gilmore
2025-12-31 16:33:43 -08:00
parent 2e0998c1dd
commit 7b9303544a

View File

@@ -113,7 +113,7 @@ describe("Cipher Service", () => {
const sdkService = mock<SdkService>();
const userId = "TestUserId" as UserId;
const orgId = "4ff8c0b2-1d3e-4f8c-9b2d-1d3e4f8c0b2" as OrganizationId;
const orgId = "4ff8c0b2-1d3e-4f8c-9b2d-1d3e4f8c0b21" as OrganizationId;
let cipherService: CipherService;
let encryptionContext: EncryptionContext;