Forgot to commit one changed line

This commit is contained in:
David Sparer
2016-10-13 11:48:31 -06:00
parent 05357c24f6
commit 9c2945d270

View File

@@ -60,7 +60,7 @@ namespace mRemoteNGTests.Security
[Test]
public void DecryptingFromPreviousApplicationExecutionWorks()
{
var decryptedCipherText = _rijndaelCryptographyProvider.Decrypt(_importedCipherText, _encryptionKey);
var decryptedCipherText = _rijndaelCryptographyProvider.Decrypt(CipherText, _encryptionKey);
Assert.That(decryptedCipherText, Is.EqualTo(_plainText));
}
}