summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-09-19 10:35:18 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-09-19 10:35:18 +0200
commit14966419e3a598da8a51468411cd5e9bce29e1a9 (patch)
tree4f78e7f0494e2939c5041a1798a367d25b66cd1f
parentf028718641517a518f25c406afc71c4e54c914d3 (diff)
downloadgitlab-ce-backstage/gb/jobs-triggering-policy-specifications.tar.gz
Fix closing braces in YAML processor specsbackstage/gb/jobs-triggering-policy-specifications
-rw-r--r--spec/lib/gitlab/ci/yaml_processor_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/lib/gitlab/ci/yaml_processor_spec.rb b/spec/lib/gitlab/ci/yaml_processor_spec.rb
index c16313a7661..d72f8553f55 100644
--- a/spec/lib/gitlab/ci/yaml_processor_spec.rb
+++ b/spec/lib/gitlab/ci/yaml_processor_spec.rb
@@ -529,7 +529,8 @@ module Gitlab
rspec: {
script: "rspec",
type: type,
- except: ["branches@#{seed_pipeline.project_full_path}"] }
+ except: ["branches@#{seed_pipeline.project_full_path}"]
+ }
})
config_processor = Gitlab::Ci::YamlProcessor.new(config)