diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2016-07-29 20:20:04 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2016-07-29 23:00:44 +0800 |
commit | 4a431a266f8773c54a0f47292d4b9470a7d2acd3 (patch) | |
tree | cda837e0614492af24d9e234f94ef22c3c81f575 /app | |
parent | 5fee7ec1a0016fb8789abf2f3b7e2faaf24518f5 (diff) | |
download | gitlab-ce-4a431a266f8773c54a0f47292d4b9470a7d2acd3.tar.gz |
Fix that tricky side-effect issue in the test
Diffstat (limited to 'app')
-rw-r--r-- | app/models/ci/build.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/build.rb b/app/models/ci/build.rb index aac78d75f57..e5523c42a3b 100644 --- a/app/models/ci/build.rb +++ b/app/models/ci/build.rb @@ -460,7 +460,7 @@ module Ci def build_attributes_from_config return {} unless pipeline.config_processor - + pipeline.config_processor.build_attributes(name) end end |