Skip to content

Commit 46eb00d

Browse files
committed
update unit tests
1 parent 2768460 commit 46eb00d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_slips_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ def test_assert_microseconds(input_value, expected_output):
186186
# testcase4: Public IPv4 address
187187
(ipaddress.ip_address("8.8.8.8"), False),
188188
# testcase5: Special IP address 0.0.0.0
189-
(ipaddress.ip_address("0.0.0.0"), False),
189+
(ipaddress.ip_address("0.0.0.0"), True),
190190
# testcase6: Broadcast IP address 255.255.255.255
191-
(ipaddress.ip_address("255.255.255.255"), False),
191+
(ipaddress.ip_address("255.255.255.255"), True),
192192
],
193193
)
194194
def test_is_private_ip(ip_address, expected_result):

0 commit comments

Comments
 (0)