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:
authorsyasonik <syasonik@gitlab.com>2019-04-25 09:00:51 +0300
committersyasonik <syasonik@gitlab.com>2019-04-25 09:00:51 +0300
commit8926b37d5b0c48b9ef89e4769e622563a9b11e9f (patch)
tree8cd60768669a5a8d277356cb77a021aaae9da86a /spec/controllers
parent4a5c48c47cccd8ce2b6bd6912ecff925122778f0 (diff)
Prefer safe_load and deep_symbolize_keys
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/projects/environments_controller_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/projects/environments_controller_spec.rb b/spec/controllers/projects/environments_controller_spec.rb
index b43698a6ef7..c1c4be45168 100644
--- a/spec/controllers/projects/environments_controller_spec.rb
+++ b/spec/controllers/projects/environments_controller_spec.rb
@@ -485,7 +485,7 @@ describe Projects::EnvironmentsController do
context 'when the dashboard could not be provided' do
before do
- allow(YAML).to receive(:load_file).and_return({})
+ allow(YAML).to receive(:safe_load).and_return({})
end
it 'returns an error response' do