X Tutup
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions lib/matplotlib/tests/test_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,20 +259,6 @@ def test_lasso_selector():
check_lasso_selector(useblit=True, button=1)


@cleanup
def test_CheckButtons():
ax = get_ax()
check = widgets.CheckButtons(ax, ('a', 'b', 'c'), (True, False, True))
assert check.get_status() == [True, False, True]
check.set_active(0)
assert check.get_status() == [False, False, True]

def clicked_function():
pass
cid = check.on_clicked(clicked_function)
check.disconnect(cid)


@image_comparison(baseline_images=['check_radio_buttons'], extensions=['png'],
style='default')
def test_check_radio_buttons_image():
Expand Down
X Tutup