Skip to content

Commit

Permalink
test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Jan 19, 2025
1 parent 5736fb4 commit 7ac4da3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dask_geopandas/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,9 @@ def test_drop():
result = df.drop(columns="col")
assert type(result) is dask_geopandas.GeoDataFrame

with pytest.raises(ValueError, match="No axis named x"):
df.drop(axis="x")


def test_core_deprecated():
with pytest.warns(FutureWarning, match="dask_geopandas.core"):
Expand Down

0 comments on commit 7ac4da3

Please sign in to comment.