From a2420026ab434fc413f62ab46e0060e7c515a0d7 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 9 Feb 2025 13:52:20 +0900 Subject: Rename actions: exclude and exclude-multi https://github.com/junegunn/fzf/pull/4231#issuecomment-2646067669 --- test/test_core.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/test_core.rb b/test/test_core.rb index 231b5950..0d7f68f5 100644 --- a/test/test_core.rb +++ b/test/test_core.rb @@ -1666,8 +1666,8 @@ class TestCore < TestInteractive end end - def test_exclude - tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter + def test_exclude_multi + tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude-multi,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter tmux.until do |lines| assert_equal 1000, lines.match_count @@ -1702,8 +1702,8 @@ class TestCore < TestInteractive # TODO: We should also check the behavior of 'exclude' during reloads end - def test_exclude_current - tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude-current,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter + def test_exclude + tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter tmux.until do |lines| assert_equal 1000, lines.match_count -- cgit v1.2.3