Skip to content

Commit 47c92bb

Browse files
committed
Use pane_current_path instead of pane_start_path
tmux 1.9 removed the latter
1 parent 0dd07c0 commit 47c92bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tmuxp/testsuite/workspacebuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def test_start_directory(self):
429429
dirs = ['/usr/bin', '/dev', '/tmp/foo bar', '/usr', os.getcwd()]
430430
for path, window in zip(dirs, self.session.windows):
431431
for p in window.panes:
432-
self.assertEqual(p.get('pane_start_path'), path)
432+
self.assertEqual(p.get('pane_current_path'), path)
433433

434434

435435
class PaneOrderingTest(TmuxTestCase):

0 commit comments

Comments
 (0)