From c658ea5ba2c1365b0da38e4095c80ba77a1fe505 Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sun, 8 Sep 2024 12:07:34 +0100 Subject: [PATCH] coverage --- py-polars/tests/unit/operations/namespaces/test_plot.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/py-polars/tests/unit/operations/namespaces/test_plot.py b/py-polars/tests/unit/operations/namespaces/test_plot.py index fc2fbc02648a..621b6327700d 100644 --- a/py-polars/tests/unit/operations/namespaces/test_plot.py +++ b/py-polars/tests/unit/operations/namespaces/test_plot.py @@ -11,6 +11,14 @@ def test_dataframe_plot() -> None: } ) df.plot.line(x="length", y="width", color="species").to_json() + df.plot.line( + x="length", + y="width", + color="species", + title="title", + x_axis_title="x_axis_title", + y_axis_title="y_axis_title", + ).to_json() df.plot.point(x="length", y="width", size="species").to_json() df.plot.scatter(x="length", y="width", size="species").to_json() df.plot.bar(x="length", y="width", color="species").to_json()