From 501577ab282af9fb64487c524fa9d038a2360d3a Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 6 May 2024 13:59:16 +0900 Subject: [PATCH] Fix flaky test case --- test/test_go.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_go.rb b/test/test_go.rb index aa7b35f..d3e6b47 100755 --- a/test/test_go.rb +++ b/test/test_go.rb @@ -2695,9 +2695,9 @@ class TestGoFZF < TestBase def test_change_preview_window_should_not_reset_change_preview tmux.send_keys "#{FZF} --preview-window up,border-none --bind 'start:change-preview(echo hello)' --bind 'enter:change-preview-window(border-left)'", :Enter - tmux.until { |lines| assert_equal 'hello', lines[0] } + tmux.until { |lines| assert_includes lines, 'hello' } tmux.send_keys :Enter - tmux.until { |lines| assert_equal '│ hello', lines[0] } + tmux.until { |lines| assert_includes lines, '│ hello' } end def test_change_preview_window_rotate