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:
authorShinya Maeda <shinya@gitlab.com>2017-11-02 21:37:32 +0300
committerShinya Maeda <shinya@gitlab.com>2017-11-02 21:37:32 +0300
commit3602c0b9874c6b93e6cf55e1cb0238951784604d (patch)
tree06c954ed572fdeba505f742ae2e878655288b54d /spec/support
parentb129f06733c7994fb81cef4d0bae6d6611647a83 (diff)
Fix some tests
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/kubernetes_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/kubernetes_helpers.rb b/spec/support/kubernetes_helpers.rb
index 3ae325637f6..e46b61b6461 100644
--- a/spec/support/kubernetes_helpers.rb
+++ b/spec/support/kubernetes_helpers.rb
@@ -27,7 +27,7 @@ module KubernetesHelpers
def stub_kubeclient_get_secrets_error(api_url)
WebMock.stub_request(:get, api_url + '/api/v1/secrets')
- .to_return(status: [500, "Internal Server Error"])
+ .to_return(status: [404, "Internal Server Error"])
end
def kube_v1_secrets_body(**options)