diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-01-30 18:54:08 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-01-30 18:54:08 +0700 |
commit | f82c115316bcbf98fae46cb6fd90a8e5a57fdef2 (patch) | |
tree | 83210fc79b5e0bdf0716f6e32e76b2db26cc30a3 /crypto/test | |
parent | Change method names (diff) | |
download | BouncyCastle.NET-ed25519-f82c115316bcbf98fae46cb6fd90a8e5a57fdef2.tar.xz |
Misc. cleanup after bc-fips-csharp updates
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/tls/test/LoggingDatagramTransport.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/tls/test/LoggingDatagramTransport.cs b/crypto/test/src/tls/test/LoggingDatagramTransport.cs index 0ad15e065..59113cf73 100644 --- a/crypto/test/src/tls/test/LoggingDatagramTransport.cs +++ b/crypto/test/src/tls/test/LoggingDatagramTransport.cs @@ -96,7 +96,7 @@ namespace Org.BouncyCastle.Tls.Tests { if (pos % 16 == 0) { - sb.Append(Environment.NewLine); + sb.AppendLine(); sb.Append(" "); } else if (pos % 16 == 8) @@ -122,7 +122,7 @@ namespace Org.BouncyCastle.Tls.Tests { if (pos % 16 == 0) { - sb.Append(Environment.NewLine); + sb.AppendLine(); sb.Append(" "); } else if (pos % 16 == 8) |