File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -1403,7 +1403,6 @@ def test_format_timedelta_ticks_narrow(self):
1403
1403
1404
1404
def test_format_timedelta_ticks_wide (self ):
1405
1405
expected_labels = [
1406
- '' ,
1407
1406
'00:00:00' ,
1408
1407
'1 days 03:46:40' ,
1409
1408
'2 days 07:33:20' ,
@@ -1412,13 +1411,9 @@ def test_format_timedelta_ticks_wide(self):
1412
1411
'5 days 18:53:20' ,
1413
1412
'6 days 22:40:00' ,
1414
1413
'8 days 02:26:40' ,
1415
- '9 days 06:13:20' ,
1416
- ''
1414
+ '9 days 06:13:20'
1417
1415
]
1418
- if self .mpl_ge_2_2_2 :
1419
- expected_labels = expected_labels [1 :- 1 ]
1420
- elif self .mpl_ge_2_0_1 :
1421
- expected_labels = expected_labels [1 :- 1 ]
1416
+ if not self .mpl_ge_2_0_1 : # 2.0.0
1422
1417
expected_labels [- 1 ] = ''
1423
1418
1424
1419
rng = timedelta_range ('0' , periods = 10 , freq = '1 d' )
You can’t perform that action at this time.
0 commit comments