We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb7fe1 commit f440b36Copy full SHA for f440b36
tests/test_session.py
@@ -145,13 +145,13 @@ def test_show_option_unknown(session):
145
def test_show_option_ambiguous(session):
146
"""Session.show_option raises AmbiguousOption for ambiguous option."""
147
with pytest.raises(exc.AmbiguousOption):
148
- session.show_option('bell-')
+ session.show_option('default-')
149
150
151
def test_set_option_ambigous(session):
152
"""Session.set_option raises AmbiguousOption for invalid option."""
153
154
- session.set_option('bell-', 43)
+ session.set_option('default-', 43)
155
156
157
def test_set_option_invalid(session):
0 commit comments