diff --git a/python/pyarrow/tests/test_table.py b/python/pyarrow/tests/test_table.py index d0a7ccacac0da..72e8cb73e16ad 100644 --- a/python/pyarrow/tests/test_table.py +++ b/python/pyarrow/tests/test_table.py @@ -2901,6 +2901,7 @@ def test_table_join_asof_by_length_mismatch(): ) +@pytest.mark.dataset def test_table_join_asof_by_type_mismatch(): t1 = pa.table({ "colA": [1, 2, 6], @@ -2922,6 +2923,7 @@ def test_table_join_asof_by_type_mismatch(): ) +@pytest.mark.dataset def test_table_join_asof_on_type_mismatch(): t1 = pa.table({ "colA": [1, 2, 6],