Commit cb0bfc12 authored by Stan Hu's avatar Stan Hu

Merge branch 'rachelfox-master-patch-05092' into 'master'

fix exist three times typo.

See merge request gitlab-org/gitlab!34690
parents 524d2ec2 3bfd1ccf
...@@ -284,7 +284,7 @@ describe API::Runners do ...@@ -284,7 +284,7 @@ describe API::Runners do
end end
end end
it 'returns 404 if runner does not exists' do it 'returns 404 if runner does not exist' do
get api('/runners/0', admin) get api('/runners/0', admin)
expect(response).to have_gitlab_http_status(:not_found) expect(response).to have_gitlab_http_status(:not_found)
...@@ -437,7 +437,7 @@ describe API::Runners do ...@@ -437,7 +437,7 @@ describe API::Runners do
end end
end end
it 'returns 404 if runner does not exists' do it 'returns 404 if runner does not exist' do
update_runner(0, admin, description: 'test') update_runner(0, admin, description: 'test')
expect(response).to have_gitlab_http_status(:not_found) expect(response).to have_gitlab_http_status(:not_found)
...@@ -511,7 +511,7 @@ describe API::Runners do ...@@ -511,7 +511,7 @@ describe API::Runners do
end end
end end
it 'returns 404 if runner does not exists' do it 'returns 404 if runner does not exist' do
delete api('/runners/0', admin) delete api('/runners/0', admin)
expect(response).to have_gitlab_http_status(:not_found) expect(response).to have_gitlab_http_status(:not_found)
......
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