THRIFT-2325 SSL test certificates
Fix: use common test cert within Python unit tests
Patch: Roger Meier
diff --git a/test/py/TestServer.py b/test/py/TestServer.py
index 334f25c..28241cc 100755
--- a/test/py/TestServer.py
+++ b/test/py/TestServer.py
@@ -201,7 +201,7 @@
 host = None
 if options.ssl:
   from thrift.transport import TSSLSocket
-  transport = TSSLSocket.TSSLServerSocket(host, options.port, certfile='test_cert.pem')
+  transport = TSSLSocket.TSSLServerSocket(host, options.port, certfile='../keys/server.pem')
 else:
   transport = TSocket.TServerSocket(host, options.port)
 tfactory = TTransport.TBufferedTransportFactory()