Skip to content

Commit 452f03d

Browse files
committed
Remove extra test backported in #7861.
1 parent 571ba3e commit 452f03d

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

lib/matplotlib/tests/test_widgets.py

-14
Original file line numberDiff line numberDiff line change
@@ -259,20 +259,6 @@ def test_lasso_selector():
259259
check_lasso_selector(useblit=True, button=1)
260260

261261

262-
@cleanup
263-
def test_CheckButtons():
264-
ax = get_ax()
265-
check = widgets.CheckButtons(ax, ('a', 'b', 'c'), (True, False, True))
266-
assert check.get_status() == [True, False, True]
267-
check.set_active(0)
268-
assert check.get_status() == [False, False, True]
269-
270-
def clicked_function():
271-
pass
272-
cid = check.on_clicked(clicked_function)
273-
check.disconnect(cid)
274-
275-
276262
@image_comparison(baseline_images=['check_radio_buttons'], extensions=['png'],
277263
style='default')
278264
def test_check_radio_buttons_image():

0 commit comments

Comments
 (0)