We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9be3d10 commit 61763f6Copy full SHA for 61763f6
pandas/tests/plotting/test_datetimelike.py
@@ -1403,7 +1403,6 @@ def test_format_timedelta_ticks_narrow(self):
1403
1404
def test_format_timedelta_ticks_wide(self):
1405
expected_labels = [
1406
- '',
1407
'00:00:00',
1408
'1 days 03:46:40',
1409
'2 days 07:33:20',
@@ -1412,13 +1411,9 @@ def test_format_timedelta_ticks_wide(self):
1412
1411
'5 days 18:53:20',
1413
'6 days 22:40:00',
1414
'8 days 02:26:40',
1415
- '9 days 06:13:20',
1416
- ''
+ '9 days 06:13:20'
1417
]
1418
- if self.mpl_ge_2_2_2:
1419
- expected_labels = expected_labels[1:-1]
1420
- elif self.mpl_ge_2_0_1:
1421
+ if not self.mpl_ge_2_0_1: # 2.0.0
1422
expected_labels[-1] = ''
1423
1424
rng = timedelta_range('0', periods=10, freq='1 d')
0 commit comments