Skip to content

Commit 9e1227a

Browse files
committed
tests: Use SSL by default for test connections.
1 parent 40f4f1e commit 9e1227a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

testing/test.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,7 @@ class Xplugin : public ::testing::Test
107107
m_sess = new mysqlx::Session(
108108
SessionOption::PORT, m_port,
109109
SessionOption::USER, m_user,
110-
SessionOption::PWD, m_password,
111-
// TODO: Use SSL connection by default?
112-
SessionOption::SSL_MODE, SSLMode::DISABLED
110+
SessionOption::PWD, m_password
113111
);
114112
}
115113
catch (const Error &e)

0 commit comments

Comments
 (0)