diff options
author | Fabio Busatto <fabio@gitlab.com> | 2018-05-28 16:27:05 +0000 |
---|---|---|
committer | Kamil TrzciĆski <ayufan@ayufan.eu> | 2018-05-28 16:27:05 +0000 |
commit | 7f1b7152f27d4a13c0de129f626b4ad86f06c7b0 (patch) | |
tree | 93dda07c5893e8ccd99972fbc152dad96fcb91b1 /qa | |
parent | bb88fb7ea234fc28824c8e5490194271478c4cc6 (diff) | |
download | gitlab-ce-7f1b7152f27d4a13c0de129f626b4ad86f06c7b0.tar.gz |
Resolve "Rename "secret variables" to "variables""
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/page/project/settings/ci_cd.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/qa/page/project/settings/ci_cd.rb b/qa/qa/page/project/settings/ci_cd.rb index 17a1bc904e4..145c3d3ddfa 100644 --- a/qa/qa/page/project/settings/ci_cd.rb +++ b/qa/qa/page/project/settings/ci_cd.rb @@ -7,7 +7,7 @@ module QA # rubocop:disable Naming/FileName view 'app/views/projects/settings/ci_cd/show.html.haml' do element :runners_settings, 'Runners settings' - element :secret_variables, 'Secret variables' + element :secret_variables, 'Variables' end def expand_runners_settings(&block) @@ -17,7 +17,7 @@ module QA # rubocop:disable Naming/FileName end def expand_secret_variables(&block) - expand_section('Secret variables') do + expand_section('Variables') do Settings::SecretVariables.perform(&block) end end |