m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-15 06:43:47 -05:00

Apply RuboCop suggestions

This commit is contained in:
Junegunn Choi
2025-09-22 21:23:54 +09:00
parent 9cad2686e9
commit ca294109c3
2 changed files with 3 additions and 3 deletions

View File

@@ -2004,7 +2004,7 @@ class TestCore < TestInteractive
end
end
elapsed = Time.now - time
assert elapsed < 2
assert_operator elapsed, :<, 2
end
def test_bg_cancel
@@ -2017,7 +2017,7 @@ class TestCore < TestInteractive
tmux.until { assert_equal 2, it.match_count }
tmux.send_keys :Space
tmux.until { |lines| assert lines.any_include?('[0]') }
sleep 2
sleep(2)
tmux.until do |lines|
assert lines.any_include?('[0]')
refute lines.any_include?('[1]')