summaryrefslogtreecommitdiff
path: root/spec/support/login_helpers.rb
diff options
context:
space:
mode:
authorTimothy Andrew <mail@timothyandrew.net>2017-06-30 16:36:36 +0000
committerTimothy Andrew <mail@timothyandrew.net>2017-07-06 06:30:07 +0000
commit8fa08ea3cd81e906c4f4951c70e3571defeab7c7 (patch)
tree9f74b9cb3479e5b69db86f6ddd3ba32d30c2e7a2 /spec/support/login_helpers.rb
parent56754848dddb5460500ab056e5ac1b9a61c7ff89 (diff)
downloadgitlab-ce-8fa08ea3cd81e906c4f4951c70e3571defeab7c7.tar.gz
Implement review comments for !11963 from @adamniedzielski.
- Change double quotes to single quotes. - Why is `OmniAuth.config.full_host` being reassigned in the integration test? - Use `map` over `map!` to avoid `dup` in the `gitlab:info` rake task - Other minor changes
Diffstat (limited to 'spec/support/login_helpers.rb')
-rw-r--r--spec/support/login_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/login_helpers.rb b/spec/support/login_helpers.rb
index 789cf9baae2..184c7b5125a 100644
--- a/spec/support/login_helpers.rb
+++ b/spec/support/login_helpers.rb
@@ -67,7 +67,7 @@ module LoginHelpers
visit new_user_session_path
expect(page).to have_content('Sign in with')
- check "Remember Me" if remember_me
+ check 'Remember Me' if remember_me
click_link "oauth-login-#{provider}"
end