use initIntpProperties instead of empty one

This commit is contained in:
marc hurabielle 2019-03-21 09:01:12 +09:00
parent c37414cc28
commit d43f03da9e

View file

@ -373,7 +373,8 @@ public class IPythonInterpreterTest extends BasePythonInterpreterTest {
public void testIpython_shouldNotHang_whenCallingAutoCompleteAndInterpretConcurrently()
throws InterpreterException,
InterruptedException, TimeoutException, ExecutionException {
startInterpreter(new Properties());
Properties properties = initIntpProperties();
startInterpreter(properties);
final String code = "import time\n"
+ "print(1)\n"
+ "time.sleep(5)\n"