From cbfee31593113fd372a728c45b4c73a573839a02 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 4 Dec 2020 20:39:44 +0900 Subject: [PATCH] Fix typo in test case --- test/test_go.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_go.rb b/test/test_go.rb index 13b1ee4..d9d1e1b 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