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
4 changes: 2 additions & 2 deletions python/pyspark/pandas/tests/test_arrow_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
pyarrow_requirement_message,
)
from pyspark import pandas as ps
from pyspark.testing.sqlutils import SQLTestUtils
from pyspark.testing.pandasutils import PandasOnSparkTestCase

import pandas as pd

Expand Down Expand Up @@ -60,7 +60,7 @@ def test_spark_arrow_c_streamer_arrow_consumer(self):
self.assertEqual(result, expected)


class ArrowInterfaceTests(ArrowInterfaceTestsMixin, SQLTestUtils):
class ArrowInterfaceTests(ArrowInterfaceTestsMixin, PandasOnSparkTestCase):
pass


Expand Down