@@ -222,7 +222,7 @@ def test_to_datetime_array_of_dt64s(self, cache):
222
222
errors = 'raise' )
223
223
224
224
tm .assert_numpy_array_equal (
225
- pd .to_datetime (dts_with_oob , box = False , errors = 'coerce' ,
225
+ pd .to_datetime (dts_with_oob , box = False , errors = 'coerce' ,
226
226
cache = cache ),
227
227
np .array (
228
228
[
@@ -401,7 +401,7 @@ def test_datetime_invalid_datatype(self):
401
401
pd .to_datetime (bool )
402
402
with pytest .raises (TypeError ):
403
403
pd .to_datetime (pd .to_datetime )
404
-
404
+
405
405
@pytest .mark .parametrize ("utc" , [True , None ])
406
406
@pytest .mark .parametrize ("format" , ['%Y%m%d %H:%M:%S' , None ])
407
407
@pytest .mark .parametrize ("box" , [True , False ])
@@ -1118,8 +1118,8 @@ def test_to_datetime_infer_datetime_format_series_with_nans(self, cache):
1118
1118
cache = cache ))
1119
1119
1120
1120
@pytest .mark .parametrize ('cache' , [True , False ])
1121
- def test_to_datetime_infer_datetime_format_series_starting_with_nans (self ,
1122
- cache ):
1121
+ def test_to_datetime_infer_datetime_format_series_start_with_nans (self ,
1122
+ cache ):
1123
1123
s = pd .Series (np .array ([np .nan , np .nan , '01/01/2011 00:00:00' ,
1124
1124
'01/02/2011 00:00:00' , '01/03/2011 00:00:00' ]))
1125
1125
0 commit comments