Skip to content

Commit

Permalink
Fix validator tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JimMadge committed Oct 21, 2024
1 parent 6f17ab0 commit 00aa68b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/validators/test_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def test_ip_address(self, ip_address, output):
def test_ip_address_fail(self, ip_address):
with pytest.raises(
ValueError,
match="Expected valid IPv4 address, for example '1.1.1.1', or 'Internet'.",
match="Expected valid IPv4 address, for example '1.1.1.1'.",
):
validators.ip_address(ip_address)

Expand Down

0 comments on commit 00aa68b

Please sign in to comment.