Update tests/pytests/unit/modules/test_dig.py

Co-authored-by: Pedro Algarvio <pedro@algarvio.me>
This commit is contained in:
Frode Gundersen 2023-12-11 19:21:43 -07:00 committed by Daniel Wozniak
parent a4f19f0919
commit 424f417249

View file

@ -88,11 +88,11 @@ def test_check_ip_ipv6_valid():
def test_check_ip_neg():
assert not dig.check_ip("-127.0.0.1"), "Did not detect negative value as invalid"
assert not dig.check_ip("-127.0.0.1")
def test_check_ip_empty():
assert not dig.check_ip(""), "Did not detect empty value as invalid"
assert not dig.check_ip("")
def test_a():