diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2021-01-06 23:49:01 -0800 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2021-01-06 23:49:20 -0800 |
commit | ce6b22969843e35cb265cc98d6952b1adece0d12 (patch) | |
tree | 2a19d10a302f87d5b73e291305383451f7bbaacb /app-misc/tmuxp/files | |
parent | dev-ruby/sanitize: drop x86-macos (diff) | |
download | gentoo-ce6b22969843e35cb265cc98d6952b1adece0d12.tar.gz gentoo-ce6b22969843e35cb265cc98d6952b1adece0d12.tar.bz2 gentoo-ce6b22969843e35cb265cc98d6952b1adece0d12.zip |
app-misc/tmuxp-1.6.4: Version bump
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'app-misc/tmuxp/files')
-rw-r--r-- | app-misc/tmuxp/files/tmuxp-1.6.4-tests.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app-misc/tmuxp/files/tmuxp-1.6.4-tests.patch b/app-misc/tmuxp/files/tmuxp-1.6.4-tests.patch new file mode 100644 index 000000000000..4bdfe015474a --- /dev/null +++ b/app-misc/tmuxp/files/tmuxp-1.6.4-tests.patch @@ -0,0 +1,22 @@ +diff --git a/tests/test_cli.py b/tests/test_cli.py +index 1e14e51..6945c2b 100644 +--- a/tests/test_cli.py ++++ b/tests/test_cli.py +@@ -486,7 +486,7 @@ session_name: hello + '{SESSION_NAME}', + '{WINDOW_NAME}', + '-c', +- 'print(pane.id)', ++ 'print(getattr(pane, "id", "{PANE_ID}"))', + ], + [], + {}, +@@ -496,7 +496,7 @@ session_name: hello + [ + '-L{SOCKET_NAME}', + '-c', +- 'print(pane.id)', ++ 'print(getattr(pane, "id", "{PANE_ID}"))', + ], + [], + {'TMUX_PANE': '{PANE_ID}'}, |