diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-21 10:46:09 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-21 10:46:09 +0700 |
commit | 522deaf74c9c119d360ebf42ca9b803eab029434 (patch) | |
tree | dbd0274ae5151e9fdf2680560c6c16d9f08a9b2e /crypto/test/src/tls | |
parent | Alternative for GetExecutingAssembly (diff) | |
download | BouncyCastle.NET-ed25519-522deaf74c9c119d360ebf42ca9b803eab029434.tar.xz |
Update defines
Diffstat (limited to 'crypto/test/src/tls')
-rw-r--r-- | crypto/test/src/tls/test/TlsTestUtilities.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/test/src/tls/test/TlsTestUtilities.cs b/crypto/test/src/tls/test/TlsTestUtilities.cs index fe2cf038f..04e3a52d1 100644 --- a/crypto/test/src/tls/test/TlsTestUtilities.cs +++ b/crypto/test/src/tls/test/TlsTestUtilities.cs @@ -51,10 +51,10 @@ namespace Org.BouncyCastle.Tls.Tests internal static string ToUpperInvariant(string s) { -#if NET_1_1 - return s.ToUpper(CultureInfo.InvariantCulture); -#else +#if PORTABLE return s.ToUpperInvariant(); +#else + return s.ToUpper(CultureInfo.InvariantCulture); #endif } |