Skip to content

Commit 8a6f779

Browse files
committed
matplotlib#2897 removing ccw=false test
1 parent 0e51dde commit 8a6f779

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed
Binary file not shown.

lib/matplotlib/tests/test_axes.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2929,22 +2929,6 @@ def test_pie_ccw_true():
29292929
plt.axis('equal')
29302930

29312931

2932-
@image_comparison(baseline_images=['pie_ccw_false'], extensions=['png'])
2933-
def test_pie_ccw_false():
2934-
# The slices will be ordered and plotted clockwise.
2935-
labels = 'Frogs', 'Hogs', 'Dogs', 'Logs'
2936-
sizes = [15, 30, 45, 10]
2937-
colors = ['yellowgreen', 'gold', 'lightskyblue', 'lightcoral']
2938-
explode = (0, 0.1, 0, 0) # only "explode" the 2nd slice (i.e. 'Hogs')
2939-
2940-
plt.pie(sizes, explode=explode, labels=labels, colors=colors,
2941-
autopct='%1.1f%%', shadow=True, startangle=90,
2942-
counterclock=False)
2943-
# Set aspect ratio to be equal so that pie is drawn as a circle.
2944-
plt.axis('equal')
2945-
2946-
2947-
29482932
if __name__ == '__main__':
29492933
import nose
29502934
import sys

0 commit comments

Comments
 (0)