@@ -586,7 +586,7 @@ def test_start_directory(session: Session, tmp_path: pathlib.Path) -> None:
586586 assert session == builder .session
587587 dirs = ["/usr/bin" , "/dev" , str (test_dir ), "/usr" , "/usr" ]
588588
589- for path , window in zip (dirs , session .windows ):
589+ for path , window in zip (dirs , session .windows , strict = False ):
590590 for p in window .panes :
591591
592592 def f (path : str , p : Pane ) -> bool :
@@ -641,7 +641,7 @@ def test_start_directory_relative(session: Session, tmp_path: pathlib.Path) -> N
641641
642642 dirs = ["/usr/bin" , "/dev" , str (test_dir ), str (config_dir ), str (config_dir )]
643643
644- for path , window in zip (dirs , session .windows ):
644+ for path , window in zip (dirs , session .windows , strict = False ):
645645 for p in window .panes :
646646
647647 def f (path : str , p : Pane ) -> bool :
@@ -1430,7 +1430,7 @@ def test_first_pane_start_directory(session: Session, tmp_path: pathlib.Path) ->
14301430
14311431 assert session .windows
14321432 window = session .windows [0 ]
1433- for path , p in zip (dirs , window .panes ):
1433+ for path , p in zip (dirs , window .panes , strict = False ):
14341434
14351435 def f (path : str , p : Pane ) -> bool :
14361436 pane_path = p .pane_current_path
0 commit comments