Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions python/pyspark/sql/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -3764,7 +3764,7 @@ def foo(k, v):


@unittest.skipIf(not _have_pandas or not _have_arrow, "Pandas or Arrow not installed")
class ScalarPandasUDF(ReusedSQLTestCase):
class ScalarPandasUDFTests(ReusedSQLTestCase):

@classmethod
def setUpClass(cls):
Expand Down Expand Up @@ -4243,7 +4243,7 @@ def test_register_vectorized_udf_basic(self):


@unittest.skipIf(not _have_pandas or not _have_arrow, "Pandas or Arrow not installed")
class GroupbyApplyPandasUDFTests(ReusedSQLTestCase):
class GroupedMapPandasUDFTests(ReusedSQLTestCase):

@property
def data(self):
Expand Down Expand Up @@ -4412,7 +4412,7 @@ def test_unsupported_types(self):


@unittest.skipIf(not _have_pandas or not _have_arrow, "Pandas or Arrow not installed")
class GroupbyAggPandasUDFTests(ReusedSQLTestCase):
class GroupedAggPandasUDFTests(ReusedSQLTestCase):

@property
def data(self):
Expand Down