Skip to content

Commit 0ed742d

Browse files
committed
Fix test_mixed_col_index_dtype
1 parent 2902e07 commit 0ed742d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/frame/test_arithmetic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2188,11 +2188,11 @@ def test_enum_column_equality():
21882188
[
21892189
"string[python]",
21902190
pytest.param(
2191-
pd.StringDtype(storage="pyarrow", na_value=pd.NA),
2191+
"string[pyarrow]",
21922192
marks=td.skip_if_no("pyarrow"),
21932193
),
21942194
pytest.param(
2195-
pd.StringDtype(storage="pyarrow", na_value=np.nan),
2195+
"str",
21962196
marks=td.skip_if_no("pyarrow"),
21972197
),
21982198
],

0 commit comments

Comments
 (0)