From 0a5eea46b1281e4d764a9f0ddb97d01b4e97c10e Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Tue, 10 Feb 2015 11:53:32 -0500 Subject: [PATCH] Add @cleanup decorator --- lib/matplotlib/tests/test_collections.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/matplotlib/tests/test_collections.py b/lib/matplotlib/tests/test_collections.py index 21a63be0a7c9..fb0f23d97051 100644 --- a/lib/matplotlib/tests/test_collections.py +++ b/lib/matplotlib/tests/test_collections.py @@ -561,6 +561,7 @@ def get_transform(self): ax.axis([-1, 1, -1, 1]) +@cleanup def test_picking(): fig, ax = plt.subplots() col = ax.scatter([0], [0], [1000])