1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-03-12 06:28:12 +00:00

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

View File

@ -32,7 +32,7 @@ public class AddressRuleTest
@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 )