From cc67d2e1cfd6bea9c09dec0816e9ca700aa87a14 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 16 Apr 2015 22:39:51 +0900 Subject: [PATCH] Test case for visual indicator of --toggle sort (#194) --- test/test_go.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_go.rb b/test/test_go.rb index abf0496..3a9f1fd 100644 --- a/test/test_go.rb +++ b/test/test_go.rb @@ -465,11 +465,11 @@ class TestGoFZF < TestBase tmux.send_keys "seq 1 111 | #{fzf '-m +s --tac --toggle-sort=ctrl-r -q11'}", :Enter tmux.until { |lines| lines[-3].include? '> 111' } tmux.send_keys :Tab - tmux.until { |lines| lines[-2].include? '4/111 (1)' } + tmux.until { |lines| lines[-2].include? '4/111 (1)' } tmux.send_keys 'C-R' tmux.until { |lines| lines[-3].include? '> 11' } tmux.send_keys :Tab - tmux.until { |lines| lines[-2].include? '4/111 (2)' } + tmux.until { |lines| lines[-2].include? '4/111/S (2)' } tmux.send_keys :Enter assert_equal ['111', '11'], readonce.split($/) end