File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ def test_empty_session_option_returns_None(session):
133
133
def test_show_option_unknown (session ):
134
134
"""Session.show_option raises UnknownOption for invalid option."""
135
135
cmd_exception = exc .UnknownOption
136
- if has_gte_version ('2.4 ' ):
136
+ if has_gte_version ('3.0 ' ):
137
137
cmd_exception = exc .InvalidOption
138
138
with pytest .raises (cmd_exception ):
139
139
session .show_option ('moooz' )
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ def test_show_window_option_unknown(session):
214
214
window = session .new_window (window_name = 'test_window' )
215
215
216
216
cmd_exception = exc .UnknownOption
217
- if has_gte_version ('2.4 ' ):
217
+ if has_gte_version ('3.0 ' ):
218
218
cmd_exception = exc .InvalidOption
219
219
with pytest .raises (cmd_exception ):
220
220
window .show_window_option ('moooz' )
You can’t perform that action at this time.
0 commit comments