From 1263795f325972bd8c47f78a239208fa0ccc49b6 Mon Sep 17 00:00:00 2001 From: Andrew Huang Date: Wed, 28 Aug 2024 15:53:01 -0700 Subject: [PATCH] fix test --- hvplot/tests/testplotting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hvplot/tests/testplotting.py b/hvplot/tests/testplotting.py index 5cf391f92..a73d8a64c 100644 --- a/hvplot/tests/testplotting.py +++ b/hvplot/tests/testplotting.py @@ -69,7 +69,7 @@ def test_plot_supports_duckdb_relation(): connection = duckdb.connect(':memory:') relation = duckdb.from_df(makeDataFrame(), connection=connection) out = plot(relation, 'line') - assert isinstance(out, hv.Curve) + assert isinstance(out, hv.NdOverlay) def test_plot_supports_duckdb_connection(): @@ -78,4 +78,4 @@ def test_plot_supports_duckdb_connection(): relation = duckdb.from_df(makeDataFrame(), connection=connection) relation.to_view('test') out = plot(connection.execute('SELECT * FROM test'), 'line') - assert isinstance(out, hv.Curve) + assert isinstance(out, hv.NdOverlay)