summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-02-04 22:49:17 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-02-04 22:49:17 +0900
commite5147392809df7ea4033a7d1f602ad1cfb0673a3 (patch)
treedf953dbd8c5773fc12832c4c502c922576180617
parent72265298f95d184c8e7d118e335f836899831042 (diff)
Fix failing test case
-rw-r--r--test/test_go.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_go.rb b/test/test_go.rb
index 702aecc9..582b10b2 100644
--- a/test/test_go.rb
+++ b/test/test_go.rb
@@ -1554,7 +1554,7 @@ module CompletionTest
tmux.prepare
# Using tmux
- tmux.send_keys 'unset FZFFOO**', :Tab
+ tmux.send_keys 'unset FZFFOOBR**', :Tab
tmux.until { |lines| lines.match_count == 1 }
tmux.send_keys :Enter
tmux.until { |lines| lines[-1].include? 'unset FZFFOOBAR' }
@@ -1562,7 +1562,7 @@ module CompletionTest
# FZF_TMUX=1
new_shell
- tmux.send_keys 'unset FZFFO**', :Tab, pane: 0
+ tmux.send_keys 'unset FZFFOOBR**', :Tab, pane: 0
tmux.until(false, 1) { |lines| lines.match_count == 1 }
tmux.send_keys :Enter
tmux.until { |lines| lines[-1].include? 'unset FZFFOOBAR' }