Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjonbrazil committed Oct 17, 2024
1 parent 05f3e4e commit 78150de
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/test_ip_address.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ def test_ip_address_ipv6_ipv4_mapped(self):
Test ipv6 address with ipv4 mapped string
"""
# IPv4 mapped behavior changes in newer versions of python are being backported
# to old versions so we are checking if more than one style fails before
# failing the test
# to old versions so we are checking if at least one style passes

data = r'::FFFF:192.168.1.35'
actual = jc.parsers.ip_address.parse(data, quiet=True)
Expand Down Expand Up @@ -152,8 +151,7 @@ def test_ip_address_ipv6_6to4(self):
Test ipv6 6to4 address string
"""
# 6to4 behavior changes in newer versions of python are being backported
# to old versions so we are checking if more than one style fails before
# failing the test
# to old versions so we are checking if at least one style passes

data = r'2002:c000:204::/48'
actual = jc.parsers.ip_address.parse(data, quiet=True)
Expand Down

0 comments on commit 78150de

Please sign in to comment.