diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-27 15:08:51 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-27 15:08:51 +0000 |
commit | 1ea1db491c8bc90789acda45c9002aaa5c4dc498 (patch) | |
tree | 46d974fed38f2ea63e69bad9d43760c62611c958 /spec/requests/git_http_spec.rb | |
parent | 22e9af3c8b8aedf7f46b786be968862b74a2d07e (diff) | |
download | gitlab-ce-1ea1db491c8bc90789acda45c9002aaa5c4dc498.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/requests/git_http_spec.rb')
-rw-r--r-- | spec/requests/git_http_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb index d9c398923c5..9f493fdffea 100644 --- a/spec/requests/git_http_spec.rb +++ b/spec/requests/git_http_spec.rb @@ -848,7 +848,7 @@ describe 'Git HTTP requests' do end it "redirects" do - expect(response).to have_gitlab_http_status(302) + expect(response).to have_gitlab_http_status(:found) end end end @@ -890,7 +890,7 @@ describe 'Git HTTP requests' do it "responds with status 200" do clone_get(path, env) do |response| - expect(response).to have_gitlab_http_status(200) + expect(response).to have_gitlab_http_status(:ok) end end |