From d359cd039c34f27d1cddc2686e140e886e249579 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Sun, 19 Jan 2025 13:57:03 -0700 Subject: [PATCH] fixup --- dask_geopandas/tests/test_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dask_geopandas/tests/test_core.py b/dask_geopandas/tests/test_core.py index a760984..678f869 100644 --- a/dask_geopandas/tests/test_core.py +++ b/dask_geopandas/tests/test_core.py @@ -1046,7 +1046,7 @@ def test_drop(): assert type(result) is dask_geopandas.GeoDataFrame with pytest.raises(ValueError, match="No axis named x"): - df.drop(axis="x") + df.drop(labels="a", axis="x") def test_core_deprecated():