diff options
author | Leandro Camargo <leandroico@gmail.com> | 2016-11-21 02:38:03 -0200 |
---|---|---|
committer | Leandro Camargo <leandroico@gmail.com> | 2017-01-25 01:07:44 -0200 |
commit | 0713a7c3a9eb1bcfdf6adde0c3365549c19a3ee1 (patch) | |
tree | dc6ed374e79782124c4c6cd8ba745883e3fbb2e5 /lib | |
parent | 94eb2f47c732dc9485aba4ebe52238e882a43473 (diff) | |
download | gitlab-ce-0713a7c3a9eb1bcfdf6adde0c3365549c19a3ee1.tar.gz |
Add specs to cover the implemented feature and fix a small bug
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/ci/config/entry/coverage.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/config/entry/coverage.rb b/lib/gitlab/ci/config/entry/coverage.rb index e5da3cf23fd..af12837130c 100644 --- a/lib/gitlab/ci/config/entry/coverage.rb +++ b/lib/gitlab/ci/config/entry/coverage.rb @@ -22,7 +22,7 @@ module Gitlab if output_filter_value.start_with?('/') && output_filter_value.end_with?('/') output_filter_value[1...-1] else - value[:output_filter] + @config[:output_filter] end end |