diff --git a/python/pyspark/sql/tests/arrow/test_arrow_python_udf.py b/python/pyspark/sql/tests/arrow/test_arrow_python_udf.py index ba1fd3e4e0a9b..90e05caf21800 100644 --- a/python/pyspark/sql/tests/arrow/test_arrow_python_udf.py +++ b/python/pyspark/sql/tests/arrow/test_arrow_python_udf.py @@ -495,6 +495,14 @@ def tearDownClass(cls): finally: super(ArrowPythonUDFTests, cls).tearDownClass() + @unittest.skip("Duplicate test; it is tested separately in legacy and non-legacy tests") + def test_udf_binary_type(self): + super(ArrowPythonUDFTests, self).test_udf_binary_type() + + @unittest.skip("Duplicate test; it is tested separately in legacy and non-legacy tests") + def test_udf_binary_type_in_nested_structures(self): + super(ArrowPythonUDFTests, self).test_udf_binary_type_in_nested_structures() + class ArrowPythonUDFLegacyTests(ArrowPythonUDFLegacyTestsMixin, ReusedSQLTestCase): @classmethod