We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72fd1ef commit fc355b1Copy full SHA for fc355b1
pandas/tests/test_graphics.py
@@ -395,11 +395,6 @@ def test_bar_center(self):
395
ax = df.plot(kind='bar', grid=True)
396
self.assertEqual(ax.xaxis.get_ticklocs()[0],
397
ax.patches[0].get_x() + ax.patches[0].get_width())
398
- @slow
399
- def test_bar_log(self):
400
- df = DataFrame({'A': [3] * 5, 'B': range(5)}, index=range(5))
401
- ax = df.plot(kind='bar', grid=True,log=True)
402
- self.assertEqual(ax.yaxis.get_ticklocs()[0],0.1)
403
404
@slow
405
def test_boxplot(self):
0 commit comments