From 8689f5f230aab25012bd5521149abd32a9964dfc Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 24 Jun 2024 17:16:56 +0900 Subject: [PATCH] Fix rubocop warning --- 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 4d72972..c6db562 100755 --- a/test/test_go.rb +++ b/test/test_go.rb @@ -3358,7 +3358,7 @@ class TestGoFZF < TestBase end def test_start_on_reload - tmux.send_keys %[echo foo | #{FZF} --header Loading --header-lines 1 --bind 'start:reload:sleep 2; echo bar' --bind 'load:change-header:Loaded'], :Enter + tmux.send_keys %(echo foo | #{FZF} --header Loading --header-lines 1 --bind 'start:reload:sleep 2; echo bar' --bind 'load:change-header:Loaded'), :Enter tmux.until(timeout: 1) { |lines| assert_includes lines[-3], 'Loading' } tmux.until(timeout: 1) { |lines| refute_includes lines[-4], 'foo' } tmux.until { |lines| assert_includes lines[-3], 'Loaded' }