File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -276,8 +276,8 @@ def test_global_session_env_options(
276
276
builder .build (session = session )
277
277
278
278
_visual_silence = session ._show_option ("visual-silence" , _global = True )
279
- assert isinstance (_visual_silence , str )
280
- assert visual_silence in _visual_silence
279
+ assert isinstance (_visual_silence , bool )
280
+ assert _visual_silence is True
281
281
assert repeat_time == session ._show_option ("repeat-time" )
282
282
assert main_pane_height == session .active_window .show_window_option (
283
283
"main-pane-height" ,
@@ -513,7 +513,7 @@ def check_window_name_mismatch() -> bool:
513
513
assert retry_until (check_window_name_mismatch , 5 , interval = 0.25 )
514
514
515
515
def check_window_name_match () -> bool :
516
- assert w .show_window_option ("automatic-rename" ) == "on"
516
+ assert w .show_window_option ("automatic-rename" )
517
517
return w .name in {
518
518
pathlib .Path (os .getenv ("SHELL" , "bash" )).name ,
519
519
portable_command ,
You can’t perform that action at this time.
0 commit comments