Skip to content

Commit

Permalink
remove xfail from passing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed Sep 26, 2024
1 parent 6c8bf5f commit c762e06
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions python/datafusion/tests/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,19 +382,18 @@ def test_udf(
pytest.param(
pa.array([b"1111", b"2222", b"3333"], pa.binary(4), _null_mask),
id="binary4",
marks=pytest.mark.xfail,
),
pytest.param(
helpers.data_datetime("s"), id="datetime_s", marks=pytest.mark.xfail
),
pytest.param(
helpers.data_datetime("ms"), id="datetime_ms", marks=pytest.mark.xfail
helpers.data_datetime("ms"), id="datetime_ms",
),
pytest.param(
helpers.data_datetime("us"), id="datetime_us", marks=pytest.mark.xfail
helpers.data_datetime("us"), id="datetime_us",
),
pytest.param(
helpers.data_datetime("ns"), id="datetime_ns", marks=pytest.mark.xfail
helpers.data_datetime("ns"), id="datetime_ns",
),
# Not writtable to parquet
pytest.param(
Expand Down

0 comments on commit c762e06

Please sign in to comment.