Skip to content

Commit

Permalink
TST (string dtype): follow-up fix for pyarrow 19.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Jan 22, 2025
1 parent 1bb264c commit a83394d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pandas/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,7 @@ def fp(request):

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


@pytest.fixture
Expand Down

0 comments on commit a83394d

Please sign in to comment.