diff options
author | Mark Lapierre <mlapierre@gitlab.com> | 2019-05-06 17:30:24 +1000 |
---|---|---|
committer | Mark Lapierre <mlapierre@gitlab.com> | 2019-05-06 17:30:24 +1000 |
commit | 3554736f23d72bd6d2d499d89ce5418d28c20302 (patch) | |
tree | 929aa3b6502d22b474bda0e447708abbad24a782 | |
parent | f9e06897adfa550f675fdaa0166ec25f2add28f5 (diff) | |
download | gitlab-ce-3554736f23d72bd6d2d499d89ce5418d28c20302.tar.gz |
Swap brackets to avoid false positiveqa-escape-netrc-regex
-rw-r--r-- | qa/spec/git/repository_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/spec/git/repository_spec.rb b/qa/spec/git/repository_spec.rb index fd77681797f..5198eb6f58b 100644 --- a/qa/spec/git/repository_spec.rb +++ b/qa/spec/git/repository_spec.rb @@ -118,7 +118,7 @@ describe QA::Git::Repository do end it 'adds credentials with special characters' do - password = %q(!"#$%&'()*+,-./:;<=>?) + password = %q[!"#$%&')(*+,-./:;<=>?] repository.username = 'user' repository.password = password |