File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -227,20 +227,20 @@ def test_set_window_and_show_window_options(session: Session) -> None:
227
227
assert window .show_window_option ("pane-border-format" ) == " #P "
228
228
229
229
230
- def test_set_and_show_window_options (session : Session ) -> None :
231
- """Window.set_option() then Window.show_window_options (key)."""
230
+ def test_set_and_show_options (session : Session ) -> None :
231
+ """Window.set_option() then Window.show_options (key)."""
232
232
window = session .new_window (window_name = "test_window" )
233
233
234
234
window .set_option ("main-pane-height" , 20 )
235
- assert window .show_window_option ("main-pane-height" ) == 20
235
+ assert window .show_option ("main-pane-height" ) == 20
236
236
237
237
window .set_option ("main-pane-height" , 40 )
238
- assert window .show_window_option ("main-pane-height" ) == 40
239
- assert window .show_window_options ()["main-pane-height" ] == 40
238
+ assert window .show_option ("main-pane-height" ) == 40
239
+ assert window .show_options ()["main-pane-height" ] == 40
240
240
241
241
if has_gte_version ("2.3" ):
242
242
window .set_option ("pane-border-format" , " #P " )
243
- assert window .show_window_option ("pane-border-format" ) == " #P "
243
+ assert window .show_option ("pane-border-format" ) == " #P "
244
244
245
245
246
246
def test_empty_window_option_returns_None (session : Session ) -> None :
Original file line number Diff line number Diff line change @@ -262,19 +262,19 @@ def test_set_window_and_show_window_options(session: Session) -> None:
262
262
263
263
264
264
def test_set_and_show_window_options (session : Session ) -> None :
265
- """Window.set_option() then Window.show_window_options (key)."""
265
+ """Window.set_option() then Window.show_options (key)."""
266
266
window = session .new_window (window_name = "test_window" )
267
267
268
268
window .set_option ("main-pane-height" , 20 )
269
- assert window .show_window_option ("main-pane-height" ) == 20
269
+ assert window .show_option ("main-pane-height" ) == 20
270
270
271
271
window .set_option ("main-pane-height" , 40 )
272
- assert window .show_window_option ("main-pane-height" ) == 40
273
- assert window .show_window_options ()["main-pane-height" ] == 40
272
+ assert window .show_option ("main-pane-height" ) == 40
273
+ assert window .show_options ()["main-pane-height" ] == 40
274
274
275
275
if has_gte_version ("2.3" ):
276
276
window .set_option ("pane-border-format" , " #P " )
277
- assert window .show_window_option ("pane-border-format" ) == " #P "
277
+ assert window .show_option ("pane-border-format" ) == " #P "
278
278
279
279
280
280
def test_empty_window_option_returns_None (session : Session ) -> None :
You can’t perform that action at this time.
0 commit comments