File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222import warnings
2323
2424import matplotlib
25- from matplotlib .testing .decorators import image_comparison , cleanup , skipif
25+ from matplotlib .testing .decorators import image_comparison , cleanup
26+ from matplotlib .testing import skip
2627import matplotlib .pyplot as plt
2728import matplotlib .markers as mmarkers
2829import matplotlib .patches as mpatches
@@ -86,11 +87,11 @@ def test_formatter_ticker():
8687 ax .autoscale_view ()
8788
8889
89- @skipif (LooseVersion (np .__version__ ) >= LooseVersion ('1.11.0' ),
90- reason = "Fall out from a fixed numpy bug" )
9190@image_comparison (baseline_images = ["formatter_large_small" ])
9291def test_formatter_large_small ():
9392 # github issue #617, pull #619
93+ if LooseVersion (np .__version__ ) >= LooseVersion ('1.11.0' ):
94+ skip ("Fall out from a fixed numpy bug" )
9495 fig , ax = plt .subplots (1 )
9596 x = [0.500000001 , 0.500000002 ]
9697 y = [1e64 , 1.1e64 ]
You can’t perform that action at this time.
0 commit comments