summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-08-24 17:09:01 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-08-24 17:09:01 +0700
commit581f559feb7e059b0f70cde370f3fa0e3e70c47b (patch)
tree9ca1c1eeb5e478df04d09a81b71aff2f969fb665
parentFinish initial porting of TLS 1.2 client from Java API (diff)
downloadBouncyCastle.NET-ed25519-581f559feb7e059b0f70cde370f3fa0e3e70c47b.tar.xz
Fix TLS test namespace
-rw-r--r--crypto/test/src/crypto/tls/test/MockTlsClient.cs4
-rw-r--r--crypto/test/src/crypto/tls/test/TlsClientTest.cs2
-rw-r--r--crypto/test/src/crypto/tls/test/TlsTestUtilities.cs2
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
     {