diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-09-19 10:35:18 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-09-19 10:35:18 +0200 |
commit | 14966419e3a598da8a51468411cd5e9bce29e1a9 (patch) | |
tree | 4f78e7f0494e2939c5041a1798a367d25b66cd1f | |
parent | f028718641517a518f25c406afc71c4e54c914d3 (diff) | |
download | gitlab-ce-14966419e3a598da8a51468411cd5e9bce29e1a9.tar.gz |
Fix closing braces in YAML processor specsbackstage/gb/jobs-triggering-policy-specifications
-rw-r--r-- | spec/lib/gitlab/ci/yaml_processor_spec.rb | 3 |
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) |