diff --git a/spatialpandas/tests/test_fixedextensionarray.py b/spatialpandas/tests/test_fixedextensionarray.py index d2ac5b7..cd5aff7 100644 --- a/spatialpandas/tests/test_fixedextensionarray.py +++ b/spatialpandas/tests/test_fixedextensionarray.py @@ -242,7 +242,13 @@ class TestGeometryPrinting(eb.BasePrintingTests): class TestGeometryMissing(eb.BaseMissingTests): - pass + @pytest.mark.skip(reason="__setitem__ not supported") + def test_fillna_frame(self): + pass + + @pytest.mark.skip(reason="__setitem__ not supported") + def test_fillna_series(self): + pass class TestGeometryReshaping(eb.BaseReshapingTests): diff --git a/spatialpandas/tests/test_listextensionarray.py b/spatialpandas/tests/test_listextensionarray.py index 1cdb74c..02176c8 100644 --- a/spatialpandas/tests/test_listextensionarray.py +++ b/spatialpandas/tests/test_listextensionarray.py @@ -241,7 +241,14 @@ class TestGeometryPrinting(eb.BasePrintingTests): class TestGeometryMissing(eb.BaseMissingTests): - pass + @pytest.mark.skip(reason="__setitem__ not supported") + def test_fillna_frame(self): + pass + + @pytest.mark.skip(reason="__setitem__ not supported") + def test_fillna_series(self): + pass + class TestGeometryReshaping(eb.BaseReshapingTests):