summaryrefslogtreecommitdiff
path: root/spec/features/issues/move_spec.rb
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-05-20 21:52:45 +0100
committerPhil Hughes <me@iamphill.com>2016-05-20 21:52:45 +0100
commit672bd4e6ff52da0acad0a5838324ba0039ed484c (patch)
tree4bcdc9b27ddb57027d638e62060af162d4a29d61 /spec/features/issues/move_spec.rb
parent8536c49f1958b08a6dc556f0cf9abd166f821669 (diff)
downloadgitlab-ce-672bd4e6ff52da0acad0a5838324ba0039ed484c.tar.gz
Correctly sends project ID
Diffstat (limited to 'spec/features/issues/move_spec.rb')
-rw-r--r--spec/features/issues/move_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/issues/move_spec.rb b/spec/features/issues/move_spec.rb
index 307ecc6fcaf..c7019c5aea1 100644
--- a/spec/features/issues/move_spec.rb
+++ b/spec/features/issues/move_spec.rb
@@ -47,7 +47,7 @@ feature 'issue move to another project' do
expect(page).to have_content(issue.title)
end
- context 'projects user does not have permission to move issue to exist', js: true do
+ context 'user does not have permission to move the issue to a project', js: true do
let!(:private_project) { create(:project, :private) }
let(:another_project) { create(:project) }
background { another_project.team << [user, :guest] }