Skip to content

Commit

Permalink
Fix named parameter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
poulad committed Sep 7, 2018
1 parent 041990c commit 3b7d1e8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ public void Should_Decrypt_Credentials()

IDecrypter decrypter = new Decrypter();

Credentials credentials = decrypter.DecryptCredentials(encryptedCredentials: passData.Credentials, key);
Credentials credentials = decrypter.DecryptCredentials(
encryptedCredentials: passData.Credentials,
key: key
);

Assert.NotNull(credentials);
Assert.NotNull(credentials.SecureData);
Expand Down

0 comments on commit 3b7d1e8

Please sign in to comment.