Github user arina-ielchiieva commented on a diff in the pull request: https://github.com/apache/drill/pull/942#discussion_r139247294 --- Diff: exec/java-exec/src/test/java/org/apache/drill/exec/ExecTest.java --- @@ -100,6 +101,14 @@ public void run() { return dir.getAbsolutePath() + File.separator + dirName; } + /** + * Sets zookeeper server and client SASL test config properties. + */ + public static void setZookeeperSaslTestConfigProps() { + System.setProperty(ZooKeeperSaslServer.LOGIN_CONTEXT_NAME_KEY, "Test_server"); --- End diff -- Maybe something like `DrillTestServerForUnitTests`, `DrillTestClientForUnitTests`.
---