Github user peter-toth commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2768#discussion_r194157588
--- Diff:
nifi-nar-bundles/nifi-spark-bundle/nifi-livy-processors/src/test/java/org/apache/nifi/processors/livy/TestExecuteSparkInteractiveSSL.java
---
@@ -109,13 +109,15 @@ private static TestServer createServer() throws
IOException {
public void testSslSparkSession() throws Exception {
addHandler(new LivyAPIHandler());
- runner.enqueue("print \"hello world\"");
+ String code = "print \"hello world\" //'?!<>[]{}()$&*=%;.|_-\\";
--- End diff --
Removed.
---