Fixes boards_spec failure

Closes #33614
This commit is contained in:
Phil Hughes 2017-06-16 18:07:18 +01:00
parent 459d8d65ad
commit 8c4c2636bc
1 changed files with 4 additions and 4 deletions

View File

@ -247,13 +247,13 @@ describe 'Issue Boards', feature: true, js: true do
end end
it 'issue moves from closed' do it 'issue moves from closed' do
drag(list_from_index: 3, list_to_index: 2) drag(list_from_index: 2, list_to_index: 3)
wait_for_board_cards(2, 8) wait_for_board_cards(2, 8)
wait_for_board_cards(3, 3) wait_for_board_cards(3, 1)
wait_for_board_cards(4, 0) wait_for_board_cards(4, 2)
expect(find('.board:nth-child(3)')).to have_content(issue8.title) expect(find('.board:nth-child(4)')).to have_content(issue8.title)
end end
context 'issue card' do context 'issue card' do