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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 10:12:44 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 10:12:44 +0300
commit6a4f265c940d3d0a9aeacf09222920d7d2cc4e45 (patch)
tree4cf73897e78f8fee50e39edb7d74fa628b6a87da /spec/services
parentcba453953c1598f83b2ed72bc012b65e0df5b767 (diff)
Add latest changes from gitlab-org/gitlab@13-0-stable-ee
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/prometheus/proxy_variable_substitution_service_spec.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/spec/services/prometheus/proxy_variable_substitution_service_spec.rb b/spec/services/prometheus/proxy_variable_substitution_service_spec.rb
index 82ea356d599..5982dcbc404 100644
--- a/spec/services/prometheus/proxy_variable_substitution_service_spec.rb
+++ b/spec/services/prometheus/proxy_variable_substitution_service_spec.rb
@@ -64,7 +64,7 @@ describe Prometheus::ProxyVariableSubstitutionService do
let(:params_keys) do
{
query: 'up{pod_name="{{pod_name}}"}',
- variables: ['pod_name', pod_name]
+ variables: { 'pod_name' => pod_name }
}
end
@@ -76,7 +76,7 @@ describe Prometheus::ProxyVariableSubstitutionService do
let(:params_keys) do
{
query: 'up{pod_name="{{pod_name}}",env="{{ci_environment_slug}}"}',
- variables: ['pod_name', pod_name, 'ci_environment_slug', 'custom_value']
+ variables: { 'pod_name' => pod_name, 'ci_environment_slug' => 'custom_value' }
}
end
@@ -95,8 +95,7 @@ describe Prometheus::ProxyVariableSubstitutionService do
}
end
- it_behaves_like 'error', 'Optional parameter "variables" must be an ' \
- 'array of keys and values. Ex: [key1, value1, key2, value2]'
+ it_behaves_like 'error', 'Optional parameter "variables" must be a Hash. Ex: variables[key1]=value1'
end
context 'with nil variables' do