fix test on python3

This commit is contained in:
Lee moon soo 2017-03-17 00:42:46 -07:00
parent 2eb5de7a22
commit a76b0d87ce

View file

@ -95,7 +95,7 @@ public class PythonInterpreterTest implements InterpreterOutputListener {
@Test
public void testInterpret() throws InterruptedException, IOException {
InterpreterResult result = pythonInterpreter.interpret("print \"hi\"", context);
InterpreterResult result = pythonInterpreter.interpret("print (\"hi\")", context);
assertEquals(InterpreterResult.Code.SUCCESS, result.code());
}