Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatija Čupić <matteeyah@gmail.com>2019-04-09 01:08:32 +0300
committerMatija Čupić <matteeyah@gmail.com>2019-04-09 01:08:32 +0300
commit8b8b466a7f6c1e24367fcb202239ddc5ea1bbfe1 (patch)
tree59cb10e570ff5c6a0d27e957f76cec6cd6e9a5d4 /spec/requests
parent225edb0d2d7737cf52ef5cd358082d08e20feaa4 (diff)
Use have_gitlab_http_status in runner_spec
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/api/runner_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/api/runner_spec.rb b/spec/requests/api/runner_spec.rb
index 5fdc7c64030..3585a827838 100644
--- a/spec/requests/api/runner_spec.rb
+++ b/spec/requests/api/runner_spec.rb
@@ -1734,7 +1734,7 @@ describe API::Runner, :clean_gitlab_redis_shared_state do
end
it 'download artifacts' do
- expect(response).to have_http_status(200)
+ expect(response).to have_gitlab_http_status(200)
expect(response.headers.to_h).to include download_headers
end
end