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 0c7845b commit 4d6a36cCopy full SHA for 4d6a36c
pandas/tests/tslibs/test_array_to_datetime.py
@@ -302,7 +302,6 @@ def test_datetime_subclass(klass):
302
303
import pandas as pd
304
from pandas import Timestamp
305
-import pandas._testing as tm
306
307
308
def test_to_datetime_format_long_string_gh54958():
@@ -314,4 +313,4 @@ def test_to_datetime_format_long_string_gh54958():
314
313
ser = pd.Series(["2023010100"])
315
expected = pd.Series([Timestamp("2023-01-01")])
316
result = pd.to_datetime(ser, format="%Y%m%d")
317
- tm.assert_series_equal(result, expected)
+ tm.assert_series_equal(result, expected)
0 commit comments