diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-02-16 13:13:59 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-02-16 13:13:59 +0100 |
commit | 2b64c67c1f563f805e53b14777452382b0c7e04a (patch) | |
tree | 5fb12178d3f869ffdc3c98d088d3661c042ea81b /qa | |
parent | a69b36264b91223934e23184175ad8f9622465fa (diff) | |
download | gitlab-ce-2b64c67c1f563f805e53b14777452382b0c7e04a.tar.gz |
Remove useless assignment in secret variables specsqa/gb/fix-tests-for-hidden-secret-variables
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/specs/features/project/add_secret_variable_spec.rb | 2 |
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 |