From 61083f2b2e37f00a19ba65194c456351d76c7fd6 Mon Sep 17 00:00:00 2001 From: Martin Bukatovic Date: Sun, 5 Jul 2015 14:12:37 +0200 Subject: [PATCH] fix failure of test_pane_order on fedora machines --- tmuxp/testsuite/workspacebuilder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmuxp/testsuite/workspacebuilder.py b/tmuxp/testsuite/workspacebuilder.py index 1e626c8c06..85658da9ad 100644 --- a/tmuxp/testsuite/workspacebuilder.py +++ b/tmuxp/testsuite/workspacebuilder.py @@ -656,7 +656,7 @@ class PaneOrderingTest(TmuxTestCase): panes: - cd /usr/bin - cd /usr - - cd /sbin + - cd /usr/sbin - cd {HOME} """.format( HOME=os.path.realpath(os.path.expanduser('~')) @@ -668,7 +668,7 @@ def test_pane_order(self): pane_paths = [ '/usr/bin', '/usr', - '/sbin', + '/usr/sbin', os.path.realpath(os.path.expanduser('~')) ]