Skip to content

Commit

Permalink
fix xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamConnors committed Sep 28, 2024
1 parent fbcdf1c commit 4a2760c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/series_only/to_numpy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@


def test_to_numpy(constructor_eager: Any, request: pytest.FixtureRequest) -> None:
if "pandas_constructor" in str(constructor_eager) or "modin_constructor" in str(
constructor_eager or "cudf_constructor" in str(constructor_eager)
if (
"pandas_constructor" in str(constructor_eager)
or "modin_constructor" in str(constructor_eager)
or "cudf_constructor" in str(constructor_eager)
):
request.applymarker(pytest.mark.xfail)

Expand Down

0 comments on commit 4a2760c

Please sign in to comment.