summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-02-16 13:13:59 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-02-16 13:13:59 +0100
commit2b64c67c1f563f805e53b14777452382b0c7e04a (patch)
tree5fb12178d3f869ffdc3c98d088d3661c042ea81b
parenta69b36264b91223934e23184175ad8f9622465fa (diff)
downloadgitlab-ce-qa/gb/fix-tests-for-hidden-secret-variables.tar.gz
Remove useless assignment in secret variables specsqa/gb/fix-tests-for-hidden-secret-variables
-rw-r--r--qa/qa/specs/features/project/add_secret_variable_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/specs/features/project/add_secret_variable_spec.rb b/qa/qa/specs/features/project/add_secret_variable_spec.rb
index 460f39505f6..d1bf7849bd0 100644
--- a/qa/qa/specs/features/project/add_secret_variable_spec.rb
+++ b/qa/qa/specs/features/project/add_secret_variable_spec.rb
@@ -4,7 +4,7 @@ module QA
Runtime::Browser.visit(:gitlab, Page::Main::Login)
Page::Main::Login.act { sign_in_using_credentials }
- variable = Factory::Resource::SecretVariable.fabricate! do |resource|
+ Factory::Resource::SecretVariable.fabricate! do |resource|
resource.key = 'VARIABLE_KEY'
resource.value = 'some secret variable'
end