THRIFT-2325 SSL-test-certificates_cpp_tests
Patch: Roger Meier
diff --git a/test/cpp/src/TestClient.cpp b/test/cpp/src/TestClient.cpp
index acb0518..591d19d 100755
--- a/test/cpp/src/TestClient.cpp
+++ b/test/cpp/src/TestClient.cpp
@@ -162,7 +162,7 @@
if (ssl) {
factory = boost::shared_ptr<TSSLSocketFactory>(new TSSLSocketFactory());
factory->ciphers("ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH");
- factory->loadTrustedCertificates("./trusted-ca-certificate.pem");
+ factory->loadTrustedCertificates("keys/CA.pem");
factory->authenticate(true);
socket = factory->createSocket(host, port);
} else {