@@ -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 ])
@@ -1069,8 +1069,8 @@ def test_to_datetime_infer_datetime_format_series_with_nans(self, cache):
1069
1069
cache = cache ))
1070
1070
1071
1071
@pytest .mark .parametrize ('cache' , [True , False ])
1072
- def test_to_datetime_infer_datetime_format_series_starting_with_nans (self ,
1073
- cache ):
1072
+ def test_to_datetime_infer_datetime_format_series_start_with_nans (self ,
1073
+ cache ):
1074
1074
s = pd .Series (np .array ([np .nan , np .nan , '01/01/2011 00:00:00' ,
1075
1075
'01/02/2011 00:00:00' , '01/03/2011 00:00:00' ]))
1076
1076
0 commit comments