From 80ffd049b65c677a413e8a42c3c4ced305c45b8c Mon Sep 17 00:00:00 2001 From: "Adrien F. VINCENT" Date: Thu, 2 Jun 2016 19:18:30 +0200 Subject: [PATCH] TST Remove plt.show() from test_axes.test_dash_offset --- lib/matplotlib/tests/test_axes.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py index b15181288c7c..5050ad3ffdf6 100644 --- a/lib/matplotlib/tests/test_axes.py +++ b/lib/matplotlib/tests/test_axes.py @@ -4249,7 +4249,6 @@ def test_dash_offset(): y = np.ones_like(x) for j in range(0, 100, 2): ax.plot(x, j*y, ls=(j, (10, 10)), lw=5, color='k') - plt.show() @cleanup