fix test setup not to interpret empty line

This commit is contained in:
Khalid Huseynov 2018-07-15 18:28:12 +09:00
parent 3a561d2471
commit 8f9541411e

View file

@ -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();