diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-07-15 23:46:29 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-07-15 23:46:29 +0000 |
commit | 2735e5f1c2859ad496bc4f7bd820a7be33f97527 (patch) | |
tree | 8f12b534fd0f46bcd5e3aaab6f1f2c7e69e8d00f /spec | |
parent | 2d96c66d63d480f24fd023fe73bf95e67d5ad257 (diff) | |
download | gitlab-ce-2735e5f1c2859ad496bc4f7bd820a7be33f97527.tar.gz |
Revert "Merge branch 'gl-dropdown-issuable-form' into 'master'"revert-bdb6f1e6
This reverts merge request !4970
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/issues/move_spec.rb | 2 | ||||
-rw-r--r-- | spec/features/issues_spec.rb | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/spec/features/issues/move_spec.rb b/spec/features/issues/move_spec.rb index 055210399a7..7773c486b4e 100644 --- a/spec/features/issues/move_spec.rb +++ b/spec/features/issues/move_spec.rb @@ -55,7 +55,7 @@ feature 'issue move to another project' do first('.select2-choice').click end - fill_in('s2id_autogen1_search', with: new_project_search.name) + fill_in('s2id_autogen2_search', with: new_project_search.name) page.within '.select2-drop' do expect(page).to have_content(new_project_search.name) diff --git a/spec/features/issues_spec.rb b/spec/features/issues_spec.rb index d00cffa4e2b..d51c9abea19 100644 --- a/spec/features/issues_spec.rb +++ b/spec/features/issues_spec.rb @@ -50,8 +50,9 @@ describe 'Issues', feature: true do expect(page).to have_content "Assignee #{@user.name}" - first('.js-user-search').click - click_link 'Unassigned' + first('#s2id_issue_assignee_id').click + sleep 2 # wait for ajax stuff to complete + first('.user-result').click click_button 'Save changes' |