Commit b5325655 authored by Stan Hu's avatar Stan Hu

Merge branch 'sh-fix-issue-43631' into 'master'

Adjust the API issues move spec to use project ID 0

Closes #43631

See merge request gitlab-org/gitlab-ce!17381
parents 5ce2fe94 9fc19492
...@@ -1417,7 +1417,7 @@ describe API::Issues do ...@@ -1417,7 +1417,7 @@ describe API::Issues do
context 'when source project does not exist' do context 'when source project does not exist' do
it 'returns 404 when trying to move an issue' do it 'returns 404 when trying to move an issue' do
post api("/projects/12345/issues/#{issue.iid}/move", user), post api("/projects/0/issues/#{issue.iid}/move", user),
to_project_id: target_project.id to_project_id: target_project.id
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(404)
...@@ -1428,7 +1428,7 @@ describe API::Issues do ...@@ -1428,7 +1428,7 @@ describe API::Issues do
context 'when target project does not exist' do context 'when target project does not exist' do
it 'returns 404 when trying to move an issue' do it 'returns 404 when trying to move an issue' do
post api("/projects/#{project.id}/issues/#{issue.iid}/move", user), post api("/projects/#{project.id}/issues/#{issue.iid}/move", user),
to_project_id: 12345 to_project_id: 0
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(404)
end end
......
...@@ -1218,7 +1218,7 @@ describe API::V3::Issues do ...@@ -1218,7 +1218,7 @@ describe API::V3::Issues do
context 'when source project does not exist' do context 'when source project does not exist' do
it 'returns 404 when trying to move an issue' do it 'returns 404 when trying to move an issue' do
post v3_api("/projects/123/issues/#{issue.id}/move", user), post v3_api("/projects/0/issues/#{issue.id}/move", user),
to_project_id: target_project.id to_project_id: target_project.id
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(404)
...@@ -1229,7 +1229,7 @@ describe API::V3::Issues do ...@@ -1229,7 +1229,7 @@ describe API::V3::Issues do
context 'when target project does not exist' do context 'when target project does not exist' do
it 'returns 404 when trying to move an issue' do it 'returns 404 when trying to move an issue' do
post v3_api("/projects/#{project.id}/issues/#{issue.id}/move", user), post v3_api("/projects/#{project.id}/issues/#{issue.id}/move", user),
to_project_id: 123 to_project_id: 0
expect(response).to have_gitlab_http_status(404) expect(response).to have_gitlab_http_status(404)
end 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