Fix error with tests

This commit is contained in:
Bruno Sutic 2015-08-01 01:07:04 +02:00
parent 121ac2f419
commit 97e281608f
No known key found for this signature in database
GPG Key ID: 66D96E4F2F7EF26C
2 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ FAIL="false"
set_tmux_conf_helper() { set_tmux_conf_helper() {
> ~/.tmux.conf # empty filename > ~/.tmux.conf # empty filename
while read -r line; do while read line; do
echo $line >> ~/.tmux.conf echo "$line" >> ~/.tmux.conf
done done
} }

View File

@ -24,7 +24,7 @@ test_plugin_installation() {
test_multiple_plugins_installation() { test_multiple_plugins_installation() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
set -g @plugin 'tmux-plugins/tmux-copycat' \ \ set -g @plugin 'tmux-plugins/tmux-copycat'
run-shell "$PWD/tpm" run-shell "$PWD/tpm"
HERE HERE