summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-12-04 20:39:44 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-12-04 20:39:52 +0900
commitcbfee31593113fd372a728c45b4c73a573839a02 (patch)
treef521f2b6c6e1a247cb0f64e7117ba6ce7c939fc5
parent6d647e13ff1d953e6f8284046a86f0babe78150b (diff)
Fix typo in test case
-rwxr-xr-xtest/test_go.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_go.rb b/test/test_go.rb
index 13b1ee47..d9d1e1bc 100755
--- a/test/test_go.rb
+++ b/test/test_go.rb
@@ -1830,7 +1830,7 @@ class TestGoFZF < TestBase
tmux.send_keys 'a'
tmux.until { |lines| assert_equal 'a> foo', lines[-1] }
tmux.send_keys 'b'
- tmux.until { |lines| assert_equal 'c> foo', lines[-1] }
+ tmux.until { |lines| assert_equal 'b> foo', lines[-1] }
end
end