Fixing tests

This commit is contained in:
Arnaud Roques 2022-05-04 19:54:15 +02:00
parent 93e5964e5f
commit 229a6129e2
1 changed files with 2 additions and 2 deletions

View File

@ -71,10 +71,10 @@ class SURLTest {
@ValueSource(strings = {
"http://localhost:8080/api",
"http://alice@localhost:8080/api",
"http://alice:secret@localhost:8080/api",
"http://alice_secret@localhost:8080/api",
"https://localhost:8080/api",
"https://alice@localhost:8080/api",
"https://alice:secret@localhost:8080/api"})
"https://alice_secret@localhost:8080/api"})
void removeUserInfo(String url) throws MalformedURLException {
SURL surl = SURL.createWithoutUser(new URL(url));