From e013c4e859e5df4fc23592bb77007c5b41c3c72d Mon Sep 17 00:00:00 2001 From: Haejoon Lee Date: Thu, 7 Dec 2023 08:58:09 +0900 Subject: [PATCH] [SPARK-46231][PYTHON][FOLLOWUP] Cleanup duplicated test ### What changes were proposed in this pull request? This PR followups https://github.com/apache/spark/pull/44148 to remove duplicated test. ### Why are the changes needed? Cleanup duplicated test. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? The existing CI should pass. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #44217 from itholic/SPARK-46231-followup. Authored-by: Haejoon Lee Signed-off-by: Hyukjin Kwon --- python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py b/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py index 455bb09a7dc45..b500be7a96957 100644 --- a/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +++ b/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py @@ -720,9 +720,6 @@ def biased_sum(v, w=None): class GroupedAggPandasUDFTests(GroupedAggPandasUDFTestsMixin, ReusedSQLTestCase): - def test_unsupported_types(self): - super().test_unsupported_types() - pass