This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 1056615 [hotfix] fix code style issue 1056615 is described below commit 10566159e4707973d9ff07c0156a38b8527c1752 Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Tue Feb 18 11:10:27 2020 +0800 [hotfix] fix code style issue --- .../java/org/apache/zeppelin/python/BasePythonInterpreterTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/src/test/java/org/apache/zeppelin/python/BasePythonInterpreterTest.java b/python/src/test/java/org/apache/zeppelin/python/BasePythonInterpreterTest.java index 66ad5f6..1515379 100644 --- a/python/src/test/java/org/apache/zeppelin/python/BasePythonInterpreterTest.java +++ b/python/src/test/java/org/apache/zeppelin/python/BasePythonInterpreterTest.java @@ -325,7 +325,8 @@ public abstract class BasePythonInterpreterTest extends ConcurrentTestCase { // z.show(df, show_index=True) context = getInterpreterContext(); result = interpreter.interpret("import pandas as pd\n" + - "df = pd.DataFrame({'id':[1,2,3], 'name':['a','b','c']})\nz.show(df, show_index=True)", + "df = pd.DataFrame({'id':[1,2,3], 'name':['a','b','c']})\n" + + "z.show(df, show_index=True)", context); assertEquals(context.out.toInterpreterResultMessage().toString(), InterpreterResult.Code.SUCCESS, result.code());