8000 Remove extra test backported in #7861. by QuLogic · Pull Request #7910 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Remove extra test backported in #7861. #7910

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 21, 2017
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
Remove extra test backported in #7861.
  • Loading branch information
QuLogic committed Jan 21, 2017
commit 452f03d9d91fecf5acf17c9411c5236e416b1cb1
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
0