diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2025-05-17 11:20:20 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2025-05-17 11:20:29 +0900 |
| commit | 894a1016bccfcb3c68707b798a73e99b78e97bd4 (patch) | |
| tree | 8f524e1c5dd9e90ca109ec593447d1b64fdeb7a8 /test | |
| parent | efe6cddd34f879d2f7766460d6aa75efe8f65e08 (diff) | |
| download | fzf-894a1016bccfcb3c68707b798a73e99b78e97bd4.tar.gz | |
RuboCop lint
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_core.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_core.rb b/test/test_core.rb index 2b218867..94ed9251 100644 --- a/test/test_core.rb +++ b/test/test_core.rb @@ -1859,9 +1859,9 @@ class TestCore < TestInteractive line = nil tmux.until { |lines| line = lines.index('> 1') } tmux.send_keys :PgDn - tmux.until { |lines| assert_includes lines[line + 4], "> 5" } + tmux.until { |lines| assert_includes lines[line + 4], '> 5' } tmux.send_keys :Space - tmux.until { |lines| assert_includes lines[line + 2], "> 5" } + tmux.until { |lines| assert_includes lines[line + 2], '> 5' } end def test_no_input_query |
