Skip to content

Commit a46e595

Browse files
committed
Fix test
1 parent f97526b commit a46e595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/test_feather.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ def test_rw_use_threads(self):
143143
def test_path_pathlib(self):
144144
df = pd.DataFrame(
145145
1.1 * np.arange(120).reshape((30, 4)),
146-
columns=pd.Index(list("ABCD"), dtype=object),
147-
index=pd.Index([f"i-{i}" for i in range(30)], dtype=object),
146+
columns=pd.Index(list("ABCD")),
147+
index=pd.Index([f"i-{i}" for i in range(30)]),
148148
).reset_index()
149149
result = tm.round_trip_pathlib(df.to_feather, read_feather)
150150
tm.assert_frame_equal(df, result)

0 commit comments

Comments
 (0)