From e5da9bde217ab0140c91005d5b2c35515d481e37 Mon Sep 17 00:00:00 2001 From: Krzysztof Wicher Date: Thu, 27 Apr 2017 11:41:09 -0700 Subject: [PATCH] fix typo: descriptor -> decryptor --- .../AlgorithmImplementations/AES/DecryptorReusability.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/AES/DecryptorReusability.cs b/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/AES/DecryptorReusability.cs index 1bc542a0d25c..0749eacd500f 100644 --- a/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/AES/DecryptorReusability.cs +++ b/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/AES/DecryptorReusability.cs @@ -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[] @@ -68,7 +68,7 @@ public static void TestDecryptorReusability() } } - private static bool ShouldDescriptorBeReusable() + private static bool ShouldDecryptorBeReusable() { if (!PlatformDetection.IsFullFramework) return true;