fix python interpreter testcase

This commit is contained in:
astroshim 2017-03-15 13:43:46 +09:00
parent e8570d2b6d
commit ac92cdb514

View file

@ -93,12 +93,6 @@ public class PythonInterpreterTest implements InterpreterOutputListener {
pythonInterpreter.close();
}
@Test
public void testInterpret() throws InterruptedException, IOException {
InterpreterResult result = pythonInterpreter.interpret("print \"hi\"", context);
assertEquals(InterpreterResult.Code.SUCCESS, result.code());
}
@Test
public void testInterpretInvalidSyntax() throws IOException {
InterpreterResult result = pythonInterpreter.interpret("for x in range(0,3): print (\"hi\")\n", context);