Skip to content

Commit

Permalink
Fix fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshadrach committed Jan 5, 2025
1 parent f2b448d commit 4d11a1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1319,8 +1319,8 @@ def nullable_string_dtype(request):

@pytest.fixture(
params=[
pytest.param("str[pyarrow]", marks=td.skip_if_no("pyarrow")),
pytest.param("string[pyarrow]", marks=td.skip_if_no("pyarrow")),
pytest.param(pd.StringDtype("pyarrow", np.nan), marks=td.skip_if_no("pyarrow")),
pytest.param(pd.StringDtype("pyarrow", pd.NA), marks=td.skip_if_no("pyarrow")),
]
)
def pyarrow_string_dtype(request):
Expand Down

0 comments on commit 4d11a1d

Please sign in to comment.