diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-07-20 14:15:18 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-07-20 14:15:18 +0200 |
commit | dff10976da42cc729069cddf0f032347fe2f6b14 (patch) | |
tree | 403b1f281e0e6196d1ecbd3b76fdabfa7162272b /spec | |
parent | f83bccfe4f98281ed80c95189c5f7ed77799b2b3 (diff) | |
download | gitlab-ce-dff10976da42cc729069cddf0f032347fe2f6b14.tar.gz |
Move job dependencies entry to the new CI config
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/ci/gitlab_ci_yaml_processor_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb index 5785b7e59fb..61490555ff5 100644 --- a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb +++ b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb @@ -1239,7 +1239,7 @@ EOT config = YAML.dump({ types: ["build", "test"], rspec: { script: "test", dependencies: "string" } }) expect do GitlabCiYamlProcessor.new(config) - end.to raise_error(GitlabCiYamlProcessor::ValidationError, "rspec job: dependencies parameter should be an array of strings") + end.to raise_error(GitlabCiYamlProcessor::ValidationError, "jobs:rspec dependencies should be an array of strings") end end |