We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a323d75 commit da8687bCopy full SHA for da8687b
1 file changed
test/Api.Test/Vault/Controllers/SyncControllerTests.cs
@@ -402,7 +402,7 @@ public async Task Get_HaveMasterPassword_UserDecryptionMasterPasswordUnlockNotNu
402
Assert.Equal(kdfMemory, result.UserDecryption.MasterPasswordUnlock.Kdf.Memory);
403
Assert.Equal(kdfParallelism, result.UserDecryption.MasterPasswordUnlock.Kdf.Parallelism);
404
Assert.Equal(user.Key, result.UserDecryption.MasterPasswordUnlock.MasterKeyEncryptedUserKey);
405
- Assert.Equal(user.Email.ToLower(), result.UserDecryption.MasterPasswordUnlock.Salt);
+ Assert.Equal(user.GetMasterPasswordSalt(), result.UserDecryption.MasterPasswordUnlock.Salt);
406
}
407
408
private async Task AssertMethodsCalledAsync(IUserService userService,
0 commit comments