This is an automated email from the ASF dual-hosted git repository. pdallig 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 f2253f1ee6 [ZEPPELIN-6008] Fix parameter usage of bokeh in test case (#4748) f2253f1ee6 is described below commit f2253f1ee6a6aeda3eac2a6576349b80b16abbf9 Author: Cheng Pan <cheng...@apache.org> AuthorDate: Tue Apr 2 15:04:59 2024 +0800 [ZEPPELIN-6008] Fix parameter usage of bokeh in test case (#4748) * [ZEPPELIN-6008] Pin plotly 5.19.0 * Revert "[ZEPPELIN-6008] Pin plotly 5.19.0" This reverts commit 60d9ce92c80c76c41769c7830a9124a5d677f492. * Pin bokeh=3.3.4 * Revert "Pin bokeh=3.3.4" This reverts commit 44ccc988de9b9c9095d3a9c3f987b6bbc8aeb250. * Remove usage of deprecated paramater legend --- .../test/java/org/apache/zeppelin/python/IPythonInterpreterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/test/java/org/apache/zeppelin/python/IPythonInterpreterTest.java b/python/src/test/java/org/apache/zeppelin/python/IPythonInterpreterTest.java index 0916130281..8dfaa07406 100644 --- a/python/src/test/java/org/apache/zeppelin/python/IPythonInterpreterTest.java +++ b/python/src/test/java/org/apache/zeppelin/python/IPythonInterpreterTest.java @@ -265,7 +265,7 @@ public class IPythonInterpreterTest extends BasePythonInterpreterTest { "x = [1, 2, 3, 4, 5]\n" + "y = [6, 7, 2, 4, 5]\n" + "p = figure(title=\"simple line example\", x_axis_label='x', y_axis_label='y')\n" + - "p.line(x, y, legend=\"Temp.\", line_width=2)\n" + + "p.line(x, y, legend_label=\"Temp.\", line_width=2)\n" + "show(p)", context); assertEquals(InterpreterResult.Code.SUCCESS, result.code(), context.out.toInterpreterResultMessage().toString());