summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-09-22 21:23:54 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-09-22 21:23:54 +0900
commitca294109c37d5dfd3cc5d33026d58400fbfea34c (patch)
tree86db670b96aee85fa1cda6544be049d81162e0fe
parent9cad2686e904c688b54a4c69d3f96801baadba31 (diff)
downloadfzf-ca294109c37d5dfd3cc5d33026d58400fbfea34c.tar.gz
Apply RuboCop suggestions
-rw-r--r--test/lib/common.rb2
-rw-r--r--test/test_core.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/lib/common.rb b/test/lib/common.rb
index d93c7685..0ddd3486 100644
--- a/test/lib/common.rb
+++ b/test/lib/common.rb
@@ -24,7 +24,7 @@ DEFAULT_TIMEOUT = 10
FILE = File.expand_path(__FILE__)
BASE = File.expand_path('../..', __dir__)
Dir.chdir(BASE)
-FZF = %[FZF_DEFAULT_OPTS="--no-scrollbar --gutter ' ' --pointer '>' --marker '>'" FZF_DEFAULT_COMMAND= #{BASE}/bin/fzf].freeze
+FZF = %(FZF_DEFAULT_OPTS="--no-scrollbar --gutter ' ' --pointer '>' --marker '>'" FZF_DEFAULT_COMMAND= #{BASE}/bin/fzf).freeze
def wait(timeout = DEFAULT_TIMEOUT)
since = Time.now
diff --git a/test/test_core.rb b/test/test_core.rb
index c9f55803..1e1ff812 100644
--- a/test/test_core.rb
+++ b/test/test_core.rb
@@ -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]')