diff --git a/test/keystore/InMemoryKeystore.test.ts b/test/keystore/InMemoryKeystore.test.ts index 01fae2c0..b33c8588 100644 --- a/test/keystore/InMemoryKeystore.test.ts +++ b/test/keystore/InMemoryKeystore.test.ts @@ -935,10 +935,10 @@ describe('InMemoryKeystore', () => { const topicData = aliceKeystore.lookupTopic(topic) const keyMaterial = getKeyMaterial(topicData!.invitation) - const salt = `${thirtyDayPeriodsSinceEpoch}-${aliceKeystore.walletAddress}` + const info = `${thirtyDayPeriodsSinceEpoch}-${aliceKeystore.walletAddress}` const hmac = await generateHmacSignature( keyMaterial, - new TextEncoder().encode(salt), + new TextEncoder().encode(info), headerBytes )