Commit e55e5d6d authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Fix test with hard coded id

parent 82ccc8bc
......@@ -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