Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
fix typo: descriptor -> decryptor
Browse files Browse the repository at this point in the history
  • Loading branch information
krwq committed Apr 27, 2017
1 parent 919790b commit e5da9bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace System.Security.Cryptography.Encryption.Aes.Tests
public static class DecryptorReusabilty
{
// See https://github.com/dotnet/corefx/issues/18903 for details
[ConditionalFact(nameof(ShouldDescriptorBeReusable))]
[ConditionalFact(nameof(ShouldDecryptorBeReusable))]
public static void TestDecryptorReusability()
{
byte[] expectedPlainText = new byte[]
Expand Down Expand Up @@ -68,7 +68,7 @@ public static void TestDecryptorReusability()
}
}

private static bool ShouldDescriptorBeReusable()
private static bool ShouldDecryptorBeReusable()
{
if (!PlatformDetection.IsFullFramework)
return true;
Expand Down

0 comments on commit e5da9bd

Please sign in to comment.