We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de77f02 + 362d6e5 commit 4dc5a3aCopy full SHA for 4dc5a3a
pandas/tests/indexes/datetimes/test_tools.py
@@ -110,11 +110,12 @@ def test_to_datetime_format_YYYYMMDD(self, cache):
110
Series([19801222, None, 20010112])
111
],
112
)
113
- def test_to_datetime_format_YYYYMMDD_with_none(self,input_s):
+ def test_to_datetime_format_YYYYMMDD_with_none(self, input_s):
114
# GH 30011
115
# format='%Y%m%d'
116
# with None
117
- expected = Series([Timestamp("19801222"), Timestamp(None), Timestamp("20010112")])
+ expected = Series([Timestamp("19801222"), Timestamp(None),
118
+ Timestamp("20010112")])
119
result = pd.to_datetime(input_s, format="%Y%m%d")
120
tm.assert_series_equal(result, expected)
121
0 commit comments