From 5ba3a3b9f8e544ab55f39f4ee09811cfff003ad1 Mon Sep 17 00:00:00 2001 From: Marshall Crumiller Date: Tue, 26 Mar 2024 17:59:34 -0400 Subject: [PATCH] Remove skip on unit test --- py-polars/tests/unit/operations/test_clear.py | 1 - 1 file changed, 1 deletion(-) diff --git a/py-polars/tests/unit/operations/test_clear.py b/py-polars/tests/unit/operations/test_clear.py index 76aba9b6e387..0ac3c1d27ba0 100644 --- a/py-polars/tests/unit/operations/test_clear.py +++ b/py-polars/tests/unit/operations/test_clear.py @@ -65,7 +65,6 @@ def test_clear_lf() -> None: assert ldfe.collect().rows() == [(None, None, None), (None, None, None)] -@pytest.mark.skip("Currently bugged: https://github.com/pola-rs/polars/issues/15303") def test_clear_series_object_starting_with_null() -> None: s = pl.Series([None, object()])