We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d39c474 commit 2093cc5Copy full SHA for 2093cc5
pandas/tests/test_frame.py
@@ -6329,6 +6329,8 @@ def test_to_csv_from_csv(self):
6329
6330
result = pd.read_csv(path, index_col='dt_index')
6331
result.index = pd.to_timedelta(result.index)
6332
+ # TODO: remove renaming when GH 10875 is solved
6333
+ result.index = result.index.rename('dt_index')
6334
result['dt_data'] = pd.to_timedelta(result['dt_data'])
6335
6336
assert_frame_equal(df, result, check_index_type=True)
0 commit comments