Skip to content

Commit 481f3f3

Browse files
committed
Fix ipv6 format
WE2-967 Signed-off-by: Sven Mitt <[email protected]>
1 parent 3d24ee2 commit 481f3f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/src/test/java/eu/webeid/example/config/YAMLConfigTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class YAMLConfigTest {
1616
"http://localhost:8080",
1717
"http://127.0.0.1",
1818
"http://127.0.0.1:8080",
19-
"http://::1",
19+
"http://[::1]",
2020
"http://[::1]:8080"
2121
})
2222
@ParameterizedTest
@@ -31,7 +31,7 @@ void givenLocalOriginHttpLoopbackAddress_whenParsingLocalOrigin_thenItIsReplaced
3131
"https://localhost:8080",
3232
"https://127.0.0.1",
3333
"https://127.0.0.1:8080",
34-
"https://::1",
34+
"https://[::1]",
3535
"https://[::1]:8080",
3636
})
3737
@ParameterizedTest

0 commit comments

Comments
 (0)