Commit 05292ba9 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'qa-fix-escape-password-spaces' into 'master'

Escape spaces to %20 rather than +

See merge request gitlab-org/gitlab-ce!16037
parents 36f47103 e7b0fe36
......@@ -23,7 +23,7 @@ module QA
def password=(pass)
@password = pass
@uri.password = CGI.escape(pass)
@uri.password = CGI.escape(pass).gsub('+', '%20')
end
def use_default_credentials
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment