File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -395,8 +395,8 @@ def test_cumprod(self, datetime_series):
395
395
396
396
def test_cummin (self , datetime_series ):
397
397
tm .assert_numpy_array_equal (datetime_series .cummin ().values ,
398
- np .minimum . accumulate (
399
- np .array (datetime_series )))
398
+ np .minimum
399
+ . accumulate ( np .array (datetime_series )))
400
400
ts = datetime_series .copy ()
401
401
ts [::2 ] = np .NaN
402
402
result = ts .cummin ()[1 ::2 ]
@@ -406,8 +406,8 @@ def test_cummin(self, datetime_series):
406
406
407
407
def test_cummax (self , datetime_series ):
408
408
tm .assert_numpy_array_equal (datetime_series .cummax ().values ,
409
- np .maximum . accumulate (
410
- np .array (datetime_series )))
409
+ np .maximum
410
+ . accumulate ( np .array (datetime_series )))
411
411
ts = datetime_series .copy ()
412
412
ts [::2 ] = np .NaN
413
413
result = ts .cummax ()[1 ::2 ]
You can’t perform that action at this time.
0 commit comments