Commit 736f1077 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents 4848a26a 4c81993c
......@@ -172,7 +172,9 @@ describe API::Issues do
end
it 'returns 404 when project does not exist' do
get api('/projects/1000/issues', non_member)
max_project_id = Project.maximum(:id).to_i
get api("/projects/#{max_project_id + 1}/issues", non_member)
expect(response).to have_gitlab_http_status(404)
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment