Skip to content

Commit 0714c02

Browse files
committed
TST: py2.6 test fix in test_graphics.py
1 parent a95687d commit 0714c02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_graphics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1948,7 +1948,7 @@ def test_boxplot_axis_limits(self):
19481948
def _check_ax_limits(col, ax):
19491949
y_min, y_max = ax.get_ylim()
19501950
self.assertTrue(y_min <= col.min())
1951-
self.assertGreaterEqual(y_max, col.max())
1951+
self.assertTrue(y_max >= col.max())
19521952

19531953
df = self.hist_df.copy()
19541954
df['age'] = np.random.randint(1, 20, df.shape[0])

0 commit comments

Comments
 (0)