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 b971bfb commit 93eabadCopy full SHA for 93eabad
pandas/tests/plotting/test_datetimelike.py
@@ -555,7 +555,7 @@ def test_finder_hourly(self):
555
xaxis = ax.get_xaxis()
556
rs = xaxis.get_majorticklocs()[0]
557
if self.mpl_ge_2_0_1:
558
- xp = Period('1999-01-01 00:00', freq='H').ordinal
+ xp = Period('1/1/1999', freq='H').ordinal
559
else:
560
xp = Period('1998-12-31 22:00', freq='H').ordinal
561
if rs != xp:
@@ -1414,7 +1414,7 @@ def test_format_timedelta_ticks_narrow(self):
1414
['00:00:00.0000000{:0>2d}'.format(2 * i)
1415
for i in range(6)])
1416
elif self.mpl_ge_2_0_1:
1417
- # same as >= 2.2.3
+ # same as >= 2.2.2
1418
expected_labels = (['00:00:00.0000000{:0>2d}'.format(i)
1419
for i in range(10)])
1420
else: # 2.0.0
0 commit comments