@@ -238,7 +238,7 @@ def test_polar_coord_annotations():
238238 ax .set_ylim (- 20 , 20 )
239239
240240
241- @image_comparison (baseline_images = ['fill_units' ], tol = 18 , extensions = ['png' ],
241+ @image_comparison (baseline_images = ['fill_units' ], extensions = ['png' ],
242242 savefig_kwarg = {'dpi' : 60 })
243243def test_fill_units ():
244244 from datetime import datetime
@@ -1046,7 +1046,7 @@ def test_markevery_polar():
10461046
10471047
10481048@image_comparison (baseline_images = ['marker_edges' ],
1049- remove_text = True , tol = 3 )
1049+ remove_text = True )
10501050def test_marker_edges ():
10511051 x = np .linspace (0 , 1 , 10 )
10521052 fig = plt .figure ()
@@ -1062,14 +1062,14 @@ def test_marker_edges():
10621062def test_bar_tick_label_single ():
10631063 # From 2516: plot bar with array of string labels for x axis
10641064 ax = plt .gca ()
1065- ax .bar (0 , 1 , tick_label = 'a ' )
1065+ ax .bar (0 , 1 , tick_label = '0 ' )
10661066
10671067 # Reuse testcase from above for a labeled data test
10681068 data = {"a" : 0 , "b" : 1 }
10691069 fig = plt .figure ()
10701070 ax = fig .add_subplot (111 )
10711071 ax = plt .gca ()
1072- ax .bar ("a" , "b" , tick_label = 'a ' , data = data )
1072+ ax .bar ("a" , "b" , tick_label = '0 ' , data = data )
10731073
10741074
10751075@cleanup
0 commit comments