Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuang11 committed Sep 13, 2024
1 parent c02d6de commit ebac847
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hvplot/tests/testplotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand All @@ -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)

0 comments on commit ebac847

Please sign in to comment.