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
3 changes: 2 additions & 1 deletion python/pyspark/sql/tests/pandas/test_pandas_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
pandas_requirement_message,
pyarrow_requirement_message,
)
from pyspark.testing.utils import QuietTest
from pyspark.testing.utils import QuietTest, eventually

if have_pandas:
import pandas as pd
Expand Down Expand Up @@ -381,6 +381,7 @@ def test_self_join(self):
self.assertEqual(sorted(actual), sorted(expected))

# SPARK-33277
@eventually(timeout=180, catch_assertions=True)
def test_map_in_pandas_with_column_vector(self):
path = tempfile.mkdtemp()
shutil.rmtree(path)
Expand Down