Skip to content

Commit

Permalink
Disables autofmt_xdate testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoppert committed Jan 14, 2017
1 parent c7851e3 commit b6e6a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/plotting/test_datetimelike.py
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,7 @@ def test_format_timedelta_ticks_narrow(self):
df = DataFrame(np.random.randn(len(rng), 3), rng)
ax = df.plot(fontsize=2)
fig = ax.get_figure()
fig.autofmt_xdate()
#fig.autofmt_xdate()
fig.canvas.draw()
labels = ax.get_xticklabels()
self.assertEqual(len(labels), len(expected_labels))
Expand All @@ -1308,7 +1308,7 @@ def test_format_timedelta_ticks_wide(self):
df = DataFrame(np.random.randn(len(rng), 3), rng)
ax = df.plot(fontsize=2)
fig = ax.get_figure()
fig.autofmt_xdate()
#fig.autofmt_xdate()
fig.canvas.draw()
labels = ax.get_xticklabels()
self.assertEqual(len(labels), len(expected_labels))
Expand Down

0 comments on commit b6e6a81

Please sign in to comment.