Skip to content

Commit e53a62c

Browse files
Update test_json.py
Having observed that GH#39098 works in the current release, allow the test that previously XFAIL'd to run (and pass). This is done to make CI/CD happy, and has nothing to do with changes otherwise present in this PR. Signed-off-by: Michael Tiemann <[email protected]>
1 parent 42ff1a8 commit e53a62c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/tests/extension/json/test_json.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -356,10 +356,8 @@ def test_groupby_extension_no_sort(self):
356356
"""
357357
super().test_groupby_extension_no_sort()
358358

359-
# GH#39098 is now fixed, so we don't need to XFAIL, nor subclass this test
360-
# @pytest.mark.xpass(reason="GH#39098: Converts agg result to object")
361-
# def test_groupby_agg_extension(self, data_for_grouping):
362-
# super().test_groupby_agg_extension(data_for_grouping)
359+
def test_groupby_agg_extension(self, data_for_grouping):
360+
super().test_groupby_agg_extension(data_for_grouping)
363361

364362

365363
class TestArithmeticOps(BaseJSON, base.BaseArithmeticOpsTests):

0 commit comments

Comments
 (0)