Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/support/helpers/mask_token.rb')
-rw-r--r--qa/qa/support/helpers/mask_token.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/qa/qa/support/helpers/mask_token.rb b/qa/qa/support/helpers/mask_token.rb
index 0c0af524c97..3aea77779ad 100644
--- a/qa/qa/support/helpers/mask_token.rb
+++ b/qa/qa/support/helpers/mask_token.rb
@@ -9,9 +9,8 @@ module QA
ci_variable.project = project
ci_variable.key = name
ci_variable.value = value
- ci_variable.protected = true
end
- "$#{name}"
+ "${#{name}}"
end
def use_group_ci_variable(name:, value:, group:)
@@ -19,9 +18,8 @@ module QA
ci_variable.group = group
ci_variable.key = name
ci_variable.value = value
- ci_variable.protected = true
end
- "$#{name}"
+ "${#{name}}"
end
end
end