Skip to content

Commit b9b3455

Browse files
committed
BUG: Modify the test_bool_multiIndex_roundtrip_through_parquet function
1 parent a22e7b9 commit b9b3455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/test_parquet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1476,7 +1476,7 @@ def test_bool_multiIndex_roundtrip_through_parquet(self, pa):
14761476
columns=pd.MultiIndex.from_tuples([(True, 'B'), (False, 'C')]),
14771477
)
14781478
with tm.ensure_clean("test.parquet") as path:
1479-
df.to_parquet(f, engine=pa)
1479+
df.to_parquet(path, engine=pa)
14801480

14811481
result = read_parquet(path, engine=pa)
14821482
tm.assert_frame_equal(result, df)

0 commit comments

Comments
 (0)