mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix test setup not to interpret empty line
This commit is contained in:
parent
3a561d2471
commit
8f9541411e
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ public class PythonInterpreterPandasSqlTest implements InterpreterOutputListener
|
|||
|
||||
|
||||
// to make sure python is running.
|
||||
InterpreterResult ret = python.interpret("\n", context);
|
||||
InterpreterResult ret = python.interpret("print(\"python initialized\")\n", context);
|
||||
assertEquals(ret.message().toString(), InterpreterResult.Code.SUCCESS, ret.code());
|
||||
|
||||
sql.open();
|
||||
|
|
|
|||
Loading…
Reference in a new issue