From b63d9767a816684867b54dba8abbff0c5e7aa60b Mon Sep 17 00:00:00 2001 From: Andrew Huang Date: Wed, 7 Aug 2024 11:24:30 -0700 Subject: [PATCH] swap logic --- hvplot/tests/testcharts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hvplot/tests/testcharts.py b/hvplot/tests/testcharts.py index 8f76f76e1..37006dfc4 100644 --- a/hvplot/tests/testcharts.py +++ b/hvplot/tests/testcharts.py @@ -325,7 +325,7 @@ def test_histogram_subplots_no_shared_axes(self): plots = self.df.hvplot.hist(subplots=True, shared_axes=False) plot_0 = plots.grid_items()[0, 0][1] plot_1 = plots.grid_items()[0, 1][1] - assert not plot_0.opts['axiswise'] + assert plot_0.opts['axiswise'] assert plot_0.range('x') == (1, 5) assert plot_1.range('y') == (2, 6) @@ -333,7 +333,7 @@ def test_histogram_subplots_shared_axes(self): plots = self.df.hvplot.hist(subplots=True, shared_axes=True) plot_0 = plots.grid_items()[0, 0][1] plot_1 = plots.grid_items()[0, 1][1] - assert plot_0.opts['axiswise'] + assert not plot_0.opts['axiswise'] assert plot_0.range('x') == (1, 6) assert plot_1.range('y') == (1, 6)