From 581f559feb7e059b0f70cde370f3fa0e3e70c47b Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Sun, 24 Aug 2014 17:09:01 +0700 Subject: Fix TLS test namespace --- crypto/test/src/crypto/tls/test/MockTlsClient.cs | 4 ++-- crypto/test/src/crypto/tls/test/TlsClientTest.cs | 2 +- crypto/test/src/crypto/tls/test/TlsTestUtilities.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/test/src/crypto/tls/test/MockTlsClient.cs b/crypto/test/src/crypto/tls/test/MockTlsClient.cs index c22e98367..61521adca 100644 --- a/crypto/test/src/crypto/tls/test/MockTlsClient.cs +++ b/crypto/test/src/crypto/tls/test/MockTlsClient.cs @@ -6,7 +6,7 @@ using Org.BouncyCastle.Asn1.X509; using Org.BouncyCastle.Utilities; using Org.BouncyCastle.Utilities.Encoders; -namespace Org.BouncyCastle.Crypto.Tls.Test +namespace Org.BouncyCastle.Crypto.Tls.Tests { internal class MockTlsClient : DefaultTlsClient @@ -34,7 +34,7 @@ namespace Org.BouncyCastle.Crypto.Tls.Test } if (cause != null) { - output.WriteLine(cause.StackTrace); + output.WriteLine(cause); } } diff --git a/crypto/test/src/crypto/tls/test/TlsClientTest.cs b/crypto/test/src/crypto/tls/test/TlsClientTest.cs index e68f1934c..c9a5ef9ad 100644 --- a/crypto/test/src/crypto/tls/test/TlsClientTest.cs +++ b/crypto/test/src/crypto/tls/test/TlsClientTest.cs @@ -5,7 +5,7 @@ using System.Text; using Org.BouncyCastle.Security; -namespace Org.BouncyCastle.Crypto.Tls.Test +namespace Org.BouncyCastle.Crypto.Tls.Tests { /** * A simple test designed to conduct a TLS handshake with an external TLS server. diff --git a/crypto/test/src/crypto/tls/test/TlsTestUtilities.cs b/crypto/test/src/crypto/tls/test/TlsTestUtilities.cs index 85a47d5e9..8e56f7819 100644 --- a/crypto/test/src/crypto/tls/test/TlsTestUtilities.cs +++ b/crypto/test/src/crypto/tls/test/TlsTestUtilities.cs @@ -12,7 +12,7 @@ using Org.BouncyCastle.Utilities.Encoders; using Org.BouncyCastle.Utilities.IO.Pem; using Org.BouncyCastle.Utilities.Test; -namespace Org.BouncyCastle.Crypto.Tls.Test +namespace Org.BouncyCastle.Crypto.Tls.Tests { public abstract class TlsTestUtilities { -- cgit 1.4.1