Skip to content

Commit a83394d

Browse files
TST (string dtype): follow-up fix for pyarrow 19.0 update
1 parent 1bb264c commit a83394d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/tests/io/test_parquet.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,7 @@ def fp(request):
104104

105105
@pytest.fixture
106106
def df_compat():
107-
# TODO(infer_string) should this give str columns?
108-
return pd.DataFrame(
109-
{"A": [1, 2, 3], "B": "foo"}, columns=pd.Index(["A", "B"], dtype=object)
110-
)
107+
return pd.DataFrame({"A": [1, 2, 3], "B": "foo"}, columns=pd.Index(["A", "B"]))
111108

112109

113110
@pytest.fixture

0 commit comments

Comments
 (0)