summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2017-06-16 20:30:35 +0000
committerRobert Speicher <robert@gitlab.com>2017-06-16 20:30:35 +0000
commitf2505eb6ce87877f78ee90c8567f879bcd77642b (patch)
treeaa66afb5f897de9c9a7e236396f1e2c200a460ed
parentf40aa331e43107c15763021f0dca764cba266b07 (diff)
parent8c4c2636bc3341257c6dd6c3e75e04d90c1e5f82 (diff)
downloadgitlab-ce-f2505eb6ce87877f78ee90c8567f879bcd77642b.tar.gz
Merge branch 'boards-spec-fix' into 'master'
Fixes boards_spec failure Closes #33614 See merge request !12230
-rw-r--r--spec/features/boards/boards_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/boards/boards_spec.rb b/spec/features/boards/boards_spec.rb
index 968cc9d9c80..ce0702072eb 100644
--- a/spec/features/boards/boards_spec.rb
+++ b/spec/features/boards/boards_spec.rb
@@ -247,13 +247,13 @@ describe 'Issue Boards', feature: true, js: true do
end
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(3, 3)
- wait_for_board_cards(4, 0)
+ wait_for_board_cards(3, 1)
+ 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
context 'issue card' do