diff --git a/spec/unit/crypto.spec.ts b/spec/unit/crypto.spec.ts index b95e9159f46..e59da2d3950 100644 --- a/spec/unit/crypto.spec.ts +++ b/spec/unit/crypto.spec.ts @@ -121,7 +121,7 @@ describe("Crypto", function () { const olmVersionTuple = Crypto.getOlmVersion(); expect(client.getCrypto()?.getVersion()).toBe( - `${olmVersionTuple[0]}.${olmVersionTuple[1]}.${olmVersionTuple[2]}`, + `Olm ${olmVersionTuple[0]}.${olmVersionTuple[1]}.${olmVersionTuple[2]}`, ); }); diff --git a/src/crypto/index.ts b/src/crypto/index.ts index d3b6133fd1f..f643491cf05 100644 --- a/src/crypto/index.ts +++ b/src/crypto/index.ts @@ -615,7 +615,7 @@ export class Crypto extends TypedEventEmitter