diff options
Diffstat (limited to 'spec/requests/api/projects_spec.rb')
-rw-r--r-- | spec/requests/api/projects_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/requests/api/projects_spec.rb b/spec/requests/api/projects_spec.rb index ad5468fb54c..3b17822f1c9 100644 --- a/spec/requests/api/projects_spec.rb +++ b/spec/requests/api/projects_spec.rb @@ -1685,7 +1685,7 @@ RSpec.describe API::Projects do end it 'returns a 404 error if not found' do - get api('/projects/42', user) + get api("/projects/#{non_existing_record_id}", user) expect(response).to have_gitlab_http_status(:not_found) expect(json_response['message']).to eq('404 Project Not Found') end @@ -2046,7 +2046,7 @@ RSpec.describe API::Projects do end it 'returns a 404 error if not found' do - get api('/projects/42/users', user) + get api("/projects/#{non_existing_record_id}/users", user) expect(response).to have_gitlab_http_status(:not_found) expect(json_response['message']).to eq('404 Project Not Found') @@ -3147,7 +3147,7 @@ RSpec.describe API::Projects do end it 'fails if project to fork from does not exist' do - post api('/projects/424242/fork', user) + post api("/projects/#{non_existing_record_id}/fork", user) expect(response).to have_gitlab_http_status(:not_found) expect(json_response['message']).to eq('404 Project Not Found') @@ -3181,7 +3181,7 @@ RSpec.describe API::Projects do end it 'fails if trying to fork to non-existent namespace' do - post api("/projects/#{project.id}/fork", user2), params: { namespace: 42424242 } + post api("/projects/#{project.id}/fork", user2), params: { namespace: non_existing_record_id } expect(response).to have_gitlab_http_status(:not_found) expect(json_response['message']).to eq('404 Namespace Not Found') |