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

Escape spaces to %20 rather than +

See merge request gitlab-org/gitlab-ce!16037
This commit is contained in:
Grzegorz Bizon 2017-12-22 09:11:07 +00:00
commit 05292ba958
1 changed files with 1 additions and 1 deletions

View File

@ -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