File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1919import warnings
2020
2121import matplotlib
22- from matplotlib .testing .decorators import (
23- cleaup , image_comparison , knownfailureif )
22+ from matplotlib .testing .decorators import image_comparison , cleanup
2423import matplotlib .pyplot as plt
2524import matplotlib .markers as mmarkers
2625from numpy .testing import assert_array_equal
@@ -4239,7 +4238,6 @@ def test_auto_numticks():
42394238
42404239
42414240@cleanup
4242- @knownfailureif (True )
42434241def test_remove_shared_axes ():
42444242 def _helper_x (ax ):
42454243 ax2 = ax .twinx ()
@@ -4280,7 +4278,7 @@ def _helper_y(ax):
42804278 orig_xlim = ax_lst [0 ][1 ].get_xlim ()
42814279 ax .remove ()
42824280 ax .set_xlim (0 , 5 )
4283- assert assert_array_equal (ax_lst [0 ][1 ].get_xlim (), orig_xlim )
4281+ assert_array_equal (ax_lst [0 ][1 ].get_xlim (), orig_xlim )
42844282
42854283
42864284@cleanup
You can’t perform that action at this time.
0 commit comments