From 2a1913bcda29d52630d7a2a46d63390dc33e82db Mon Sep 17 00:00:00 2001 From: Michael Tiemann <72577720+MichaelTiemannOSC@users.noreply.github.com> Date: Sun, 2 Jul 2023 17:47:19 -0400 Subject: [PATCH] Update test_json.py Fix pylint complaint about useless parent delgation. Signed-off-by: Michael Tiemann <72577720+MichaelTiemannOSC@users.noreply.github.com> --- pandas/tests/extension/json/test_json.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pandas/tests/extension/json/test_json.py b/pandas/tests/extension/json/test_json.py index ac63fd2411400..85fa439f42ced 100644 --- a/pandas/tests/extension/json/test_json.py +++ b/pandas/tests/extension/json/test_json.py @@ -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):