@@ -222,7 +222,7 @@ def test_to_datetime_array_of_dt64s(self, cache):
222222 errors = 'raise' )
223223
224224 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' ,
226226 cache = cache ),
227227 np .array (
228228 [
@@ -401,7 +401,7 @@ def test_datetime_invalid_datatype(self):
401401 pd .to_datetime (bool )
402402 with pytest .raises (TypeError ):
403403 pd .to_datetime (pd .to_datetime )
404-
404+
405405 @pytest .mark .parametrize ("utc" , [True , None ])
406406 @pytest .mark .parametrize ("format" , ['%Y%m%d %H:%M:%S' , None ])
407407 @pytest .mark .parametrize ("box" , [True , False ])
@@ -1118,8 +1118,8 @@ def test_to_datetime_infer_datetime_format_series_with_nans(self, cache):
11181118 cache = cache ))
11191119
11201120 @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 ):
11231123 s = pd .Series (np .array ([np .nan , np .nan , '01/01/2011 00:00:00' ,
11241124 '01/02/2011 00:00:00' , '01/03/2011 00:00:00' ]))
11251125
0 commit comments