summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crypto/test/src/crypto/tls/test/TlsProtocolTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs b/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs

index 4c49420c6..ba5b90c75 100644 --- a/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs +++ b/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs
@@ -26,7 +26,7 @@ namespace Org.BouncyCastle.Crypto.Tls.Tests Server server = new Server(serverProtocol); - Thread serverThread = new Thread(server.Run); + Thread serverThread = new Thread(new ThreadStart(server.Run)); serverThread.Start(); MockTlsClient client = new MockTlsClient(null);