Fix alternative localhost domain

lvh.me is dead. Let's kick the can down the road!
This commit is contained in:
Jonathan Coates 2021-06-07 18:22:49 +01:00
parent e18e24407e
commit 7404133d40
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public void matchesPort()
@ParameterizedTest
@ValueSource( strings = {
"0.0.0.0", "[::]",
"localhost", "lvh.me", "127.0.0.1", "[::1]",
"localhost", "127.0.0.1.nip.io", "127.0.0.1", "[::1]",
"172.17.0.1", "192.168.1.114", "[0:0:0:0:0:ffff:c0a8:172]", "10.0.0.1"
} )
public void blocksLocalDomains( String domain )