diff options
Diffstat (limited to 'spec/features/boards/boards_spec.rb')
-rw-r--r-- | spec/features/boards/boards_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/boards/boards_spec.rb b/spec/features/boards/boards_spec.rb index db6bb639e79..0ac8e7c5fc8 100644 --- a/spec/features/boards/boards_spec.rb +++ b/spec/features/boards/boards_spec.rb @@ -519,7 +519,7 @@ describe 'Issue Boards', :js do page.within(find('.board:nth-child(2)')) do expect(page).to have_selector('.board-card', count: 8) expect(find('.board-card', match: :first)).to have_content(bug.title) - click_button(bug.title) + click_link(bug.title) wait_for_requests end @@ -536,7 +536,7 @@ describe 'Issue Boards', :js do it 'removes label filter by clicking label button on issue' do page.within(find('.board:nth-child(2)')) do page.within(find('.board-card', match: :first)) do - click_button(bug.title) + click_link(bug.title) end wait_for_requests |