This commit is contained in:
marc hurabielle 2019-03-24 17:43:22 +09:00
parent 73424d17de
commit 6f4910c670

View file

@ -105,7 +105,8 @@ public class IPythonInterpreterTest extends BasePythonInterpreterTest {
result = interpreter.interpret(codeKillKernel, context);
assertEquals(Code.ERROR, result.code());
output = context.out.toInterpreterResultMessage().get(0);
assertTrue(output.getData().equals("Ipython kernel has been stopped. Please check logs. It might be because of an out of memory issue."));
assertTrue(output.getData().equals("Ipython kernel has been stopped. Please check logs. "
+ "It might be because of an out of memory issue."));
}
@Test