File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
maven/src/test/java/pl/project13/core Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ public static Collection<Object[]> parameters() {
5252 { "file:///path/to/repo.git/" , "file:///path/to/repo.git/" },
5353 { "file:///C:\\ Users\\ test\\ example" , "file:///C:\\ Users\\ test\\ example" },
5454 { "file://C:\\ Users\\ test\\ example" , "file://C:\\ Users\\ test\\ example" },
55+ // ensure a percent encoded password is stripped too, that should be allowed
56+ { "https://user:passw%40rd@example.com:8888" , "https://user@example.com:8888" },
5557 // Must Support: use of 'unreserved' characters as https://www.ietf.org/rfc/rfc2396.txt, Section "2.3. Unreserved Characters"
5658 { "https://user:A-_.!~*'()Z@example.com:8888" , "https://user@example.com:8888" },
5759 // Optional Support: use of 'reserved' characters as https://www.ietf.org/rfc/rfc2396.txt, Section "2.2. Reserved Characters"
You can’t perform that action at this time.
0 commit comments