diff options
author | Phil Hughes <me@iamphill.com> | 2016-04-01 13:44:22 +0100 |
---|---|---|
committer | Jacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home> | 2016-04-16 16:13:16 -0400 |
commit | ce2e37d446c113575b137f1a11d56df080d02148 (patch) | |
tree | dc832b5bc28b0851a05b33bd0bd5915127ca4ea3 /spec | |
parent | 6c949b2bf1c9ee47fb5b181f44021ad6eeb1cd5a (diff) | |
download | gitlab-ce-ce2e37d446c113575b137f1a11d56df080d02148.tar.gz |
Fixed tests
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/issues/move_spec.rb | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/spec/features/issues/move_spec.rb b/spec/features/issues/move_spec.rb index 6fda0c31866..caa7b0ec48a 100644 --- a/spec/features/issues/move_spec.rb +++ b/spec/features/issues/move_spec.rb @@ -42,11 +42,9 @@ feature 'issue move to another project' do expect(current_url).to include project_path(new_project) - page.within('.issue') do - expect(page).to have_content("Text with #{cross_reference}!1") - expect(page).to have_content("Moved from #{cross_reference}#1") - expect(page).to have_content(issue.title) - end + expect(page).to have_content("Text with #{cross_reference}!1") + expect(page).to have_content("Moved from #{cross_reference}#1") + expect(page).to have_content(issue.title) end context 'projects user does not have permission to move issue to exist' do @@ -74,7 +72,7 @@ feature 'issue move to another project' do def edit_issue(issue) visit issue_path(issue) - page.within('.issuable-header') { click_link 'Edit' } + page.within('.issuable-actions') { find('.issuable-edit').click } end def issue_path(issue) |