File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1313import numpy as np
1414import pytest
1515
16- from pandas ._config import using_string_dtype
17-
1816import pandas as pd
17+ import pandas ._testing as tm
1918from pandas import (
2019 DataFrame ,
2120 DatetimeIndex ,
2423 Series ,
2524 Timestamp ,
2625)
27- import pandas ._testing as tm
26+ from pandas ._config import using_string_dtype
2827from pandas .core .indexes .datetimes import date_range
2928from pandas .core .tools .datetimes import start_caching_at
30-
3129from pandas .io .parsers import read_csv
3230
3331pytestmark = pytest .mark .filterwarnings (
@@ -861,11 +859,11 @@ def test_parse_dates_arrow_dtype_as_index(all_parsers):
861859 index_col = "a" ,
862860 dtype_backend = "pyarrow" ,
863861 )
864- expected = pd . Series (
862+ expected = Series (
865863 [1 , 1 ],
866864 name = "b" ,
867865 dtype = "int64[pyarrow]" ,
868- index = pd . Index (
866+ index = Index (
869867 [
870868 Timestamp ("2000-01-01 00:00:00" ),
871869 Timestamp ("2000-01-01 00:00:01" ),
You can’t perform that action at this time.
0 commit comments