From 11645e1fac26f67b7690d618003e89b5ffcb9680 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 2 Nov 2019 14:55:13 +0900 Subject: [PATCH] Fix flaky test case --- test/test_go.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/test_go.rb b/test/test_go.rb index ac0b1f8..2cfbcfd 100755 --- a/test/test_go.rb +++ b/test/test_go.rb @@ -256,12 +256,12 @@ class TestGoFZF < TestBase # Testing basic key bindings tmux.send_keys '99', 'C-a', '1', 'C-f', '3', 'C-b', 'C-h', 'C-u', 'C-e', 'C-y', 'C-k', 'Tab', 'BTab' - tmux.until { |lines| lines[-2] == ' 856/100000' } - lines = tmux.capture - assert_equal '> 3910', lines[-4] - assert_equal ' 391', lines[-3] - assert_equal ' 856/100000', lines[-2] - assert_equal '> 391', lines[-1] + tmux.until do |lines| + '> 3910' == lines[-4] && + ' 391' == lines[-3] && + ' 856/100000' == lines[-2] && + '> 391' == lines[-1] + end tmux.send_keys :Enter assert_equal '3910', readonce.chomp