diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-21 12:09:07 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-21 12:09:07 +0000 |
commit | 2a040e2655fe0a99df61ad0a7bd0c27e68af0c38 (patch) | |
tree | a245cd0d6dd10f185e2fd098e371adc1ea03b72b /spec/requests/api/boards_spec.rb | |
parent | a53d2c37c4934f564caa94543dd4cf5af1703e2d (diff) | |
download | gitlab-ce-2a040e2655fe0a99df61ad0a7bd0c27e68af0c38.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/requests/api/boards_spec.rb')
-rw-r--r-- | spec/requests/api/boards_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/requests/api/boards_spec.rb b/spec/requests/api/boards_spec.rb index f53bfedb49a..d761b371821 100644 --- a/spec/requests/api/boards_spec.rb +++ b/spec/requests/api/boards_spec.rb @@ -45,7 +45,7 @@ describe API::Boards do post api(url, user), params: { label_id: group_label.id } - expect(response).to have_gitlab_http_status(201) + expect(response).to have_gitlab_http_status(:created) expect(json_response['label']['name']).to eq(group_label.title) expect(json_response['position']).to eq(3) end @@ -60,7 +60,7 @@ describe API::Boards do post api(url, user), params: { label_id: group_label.id } - expect(response).to have_gitlab_http_status(201) + expect(response).to have_gitlab_http_status(:created) expect(json_response['label']['name']).to eq(group_label.title) end end @@ -78,7 +78,7 @@ describe API::Boards do post api(url, user), params: { label_id: group_label.id } - expect(response).to have_gitlab_http_status(201) + expect(response).to have_gitlab_http_status(:created) expect(json_response['label']['name']).to eq(group_label.title) end end |