From 78150ded70d1068fc0f5a138e8704c57df7c97f9 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 14:05:06 -0700 Subject: [PATCH] doc update --- tests/test_ip_address.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index a22a3b9d..da33f58a 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -89,8 +89,7 @@ class MyTests(unittest.TestCase): 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) @@ -152,8 +151,7 @@ class MyTests(unittest.TestCase): 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)