File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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(
276276 builder .build (session = session )
277277
278278 _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
281281 assert repeat_time == session ._show_option ("repeat-time" )
282282 assert main_pane_height == session .active_window .show_window_option (
283283 "main-pane-height" ,
@@ -511,7 +511,7 @@ def check_window_name_mismatch() -> bool:
511511 assert retry_until (check_window_name_mismatch , 5 , interval = 0.25 )
512512
513513 def check_window_name_match () -> bool :
514- assert w .show_window_option ("automatic-rename" ) == "on"
514+ assert w .show_window_option ("automatic-rename" )
515515 return w .name in {
516516 pathlib .Path (os .getenv ("SHELL" , "bash" )).name ,
517517 portable_command ,
You can’t perform that action at this time.
0 commit comments