Skip to content
Snippets Groups Projects
Unverified Commit 73cb70db authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Fix flaky test case: test_file_completion_unicode

parent d082cccb
No related branches found
No related tags found
No related merge requests found
......@@ -1444,7 +1444,7 @@ module CompletionTest
tmux.send_keys :BTab, :BTab, pane: 1
tmux.until(1) { |lines| lines[-2].include? '(2)' }
tmux.send_keys :Enter, pane: 1
tmux.until { |lines| lines[-1].include? 'cat' }
tmux.until { |lines| lines[-1].include?('cat') || lines[-2].include?('cat') }
tmux.send_keys :Enter
tmux.until { |lines| lines[-1].include? 'test3test4' }
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment