Skip to content

Commit

Permalink
Update test_json.py
Browse files Browse the repository at this point in the history
Fix pylint complaint about useless parent delgation.

Signed-off-by: Michael Tiemann <[email protected]>
  • Loading branch information
MichaelTiemannOSC committed Jul 2, 2023
1 parent 0b833aa commit 2a1913b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pandas/tests/extension/json/test_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,10 @@ def test_groupby_extension_no_sort(self):
"""
super().test_groupby_extension_no_sort()

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


class TestArithmeticOps(BaseJSON, base.BaseArithmeticOpsTests):
Expand Down

0 comments on commit 2a1913b

Please sign in to comment.