diff options
author | Phil Hughes <me@iamphill.com> | 2016-05-20 21:52:45 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-05-20 21:52:45 +0100 |
commit | 672bd4e6ff52da0acad0a5838324ba0039ed484c (patch) | |
tree | 4bcdc9b27ddb57027d638e62060af162d4a29d61 /spec | |
parent | 8536c49f1958b08a6dc556f0cf9abd166f821669 (diff) | |
download | gitlab-ce-672bd4e6ff52da0acad0a5838324ba0039ed484c.tar.gz |
Correctly sends project ID
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/issues/move_spec.rb | 2 |
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] } |