@@ -107,7 +107,6 @@ def test_focus_pane_index(session):
107
107
def f ():
108
108
nonlocal p
109
109
p = w .attached_pane
110
- p .server ._update_panes ()
111
110
return p .pane_current_path == pane_path
112
111
113
112
assert retry_until (f )
@@ -126,7 +125,6 @@ def f():
126
125
def f ():
127
126
nonlocal p
128
127
p = window3 .attached_pane
129
- p .server ._update_panes ()
130
128
return p .pane_current_path == pane_path
131
129
132
130
assert retry_until (f )
@@ -510,7 +508,6 @@ def test_start_directory(session, tmp_path: pathlib.Path):
510
508
for p in window .panes :
511
509
512
510
def f ():
513
- p .server ._update_panes ()
514
511
pane_path = p .pane_current_path
515
512
return path in pane_path or pane_path == path
516
513
@@ -560,7 +557,6 @@ def test_start_directory_relative(session, tmp_path: pathlib.Path):
560
557
for p in window .panes :
561
558
562
559
def f ():
563
- p .server ._update_panes ()
564
560
# Handle case where directories resolve to /private/ in OSX
565
561
pane_path = p .pane_current_path
566
562
return path in pane_path or pane_path == path
@@ -636,7 +632,6 @@ def test_pane_order(session):
636
632
pane_path = pane_paths [p_index - pane_base_index ]
637
633
638
634
def f ():
639
- p .server ._update_panes ()
640
635
return p .pane_current_path == pane_path
641
636
642
637
assert retry_until (f )
@@ -1227,7 +1222,6 @@ def test_first_pane_start_directory(session, tmp_path: pathlib.Path):
1227
1222
for path , p in zip (dirs , window .panes ):
1228
1223
1229
1224
def f ():
1230
- p .server ._update_panes ()
1231
1225
pane_path = p .pane_current_path
1232
1226
return path in pane_path or pane_path == path
1233
1227
0 commit comments