summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-05-24 13:20:13 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-05-24 13:20:13 +0900
commit96a3250152749641edce8e91385ecf29dc2789a4 (patch)
tree3d3b3ba9a31e8a97027058d6e6cf8f6c31f5e5f1 /test
parentf5746002fd6b870bdeac6b8c164d5f39efbf5b8d (diff)
Update test case for --cycle
Diffstat (limited to 'test')
-rw-r--r--test/test_go.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_go.rb b/test/test_go.rb
index 1106babd..85b8f370 100644
--- a/test/test_go.rb
+++ b/test/test_go.rb
@@ -975,15 +975,15 @@ class TestGoFZF < TestBase
tmux.until { |lines| lines[-10].start_with? '>' }
tmux.send_keys :Down
tmux.until { |lines| lines[-9].start_with? '>' }
- tmux.send_keys :PgUp
+ tmux.send_keys :Up
tmux.until { |lines| lines[-10].start_with? '>' }
tmux.send_keys :PgUp
- tmux.until { |lines| lines[-3].start_with? '>' }
+ tmux.until { |lines| lines[-10].start_with? '>' }
tmux.send_keys :Up
- tmux.until { |lines| lines[-4].start_with? '>' }
- tmux.send_keys :PgDn
tmux.until { |lines| lines[-3].start_with? '>' }
tmux.send_keys :PgDn
+ tmux.until { |lines| lines[-3].start_with? '>' }
+ tmux.send_keys :Down
tmux.until { |lines| lines[-10].start_with? '>' }
end