diff options
Diffstat (limited to 'crypto/test/src')
-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) |