summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-12-01 02:22:36 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-12-01 02:22:36 +0900
commit9615c4edf13b0cedbc8c9b1c22bac905e12de8af (patch)
tree856485d6dc99f9420982cc9c38e2eebf4a12d03b /test
parent85a75ee035f7945ecbb82e76fc5e1ca5e81993ae (diff)
Fix test case for invalid FZF_DEFAULT_COMMAND
Diffstat (limited to 'test')
-rw-r--r--test/test_go.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_go.rb b/test/test_go.rb
index 27c2a93d..ec495c6a 100644
--- a/test/test_go.rb
+++ b/test/test_go.rb
@@ -277,7 +277,7 @@ class TestGoFZF < TestBase
def test_fzf_default_command_failure
tmux.send_keys fzf.sub('FZF_DEFAULT_COMMAND=', 'FZF_DEFAULT_COMMAND=false'), :Enter
- tmux.until { |lines| lines[-2].include?('ERROR') }
+ tmux.until { |lines| lines[-2].include?('FZF_DEFAULT_COMMAND failed') }
tmux.send_keys :Enter
end