aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Luis Duran <jlduran@FreeBSD.org>2024-11-05 03:04:53 +0000
committerJose Luis Duran <jlduran@FreeBSD.org>2024-11-05 03:07:03 +0000
commit8b13cb9d654c985534d24a09ec5dab02cc4dea6e (patch)
treeba537bce88615336417f5e415d4a6db6f469fc7e
parent4859030ef193688153f490915794ae9ab77f012b (diff)
ping tests: Silence deprecation warnings
Declare some regex patterns as a raw string by prepending `r`. Reviewed by: markj Approved by: emaste (mentor) Differential Revision: https://reviews.freebsd.org/D42174
-rw-r--r--sbin/ping/tests/test_ping.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/ping/tests/test_ping.py b/sbin/ping/tests/test_ping.py
index cf2e46a146c8..93b42d7d53bd 100644
--- a/sbin/ping/tests/test_ping.py
+++ b/sbin/ping/tests/test_ping.py
@@ -270,15 +270,15 @@ def pinger(
def redact(output):
"""Redact some elements of ping's output"""
pattern_replacements = [
- ("localhost \([0-9]{1,3}(\.[0-9]{1,3}){3}\)", "localhost"),
- ("from [0-9]{1,3}(\.[0-9]{1,3}){3}", "from"),
+ (r"localhost \([0-9]{1,3}(\.[0-9]{1,3}){3}\)", "localhost"),
+ (r"from [0-9]{1,3}(\.[0-9]{1,3}){3}", "from"),
("hlim=[0-9]*", "hlim="),
("ttl=[0-9]*", "ttl="),
("time=[0-9.-]*", "time="),
("cp: .*", "cp: xx xx xx xx xx xx xx xx"),
("dp: .*", "dp: xx xx xx xx xx xx xx xx"),
- ("\(-[0-9\.]+[0-9]+ ms\)", "(- ms)"),
- ("[0-9\.]+/[0-9.]+", "/"),
+ (r"\(-[0-9\.]+[0-9]+ ms\)", "(- ms)"),
+ (r"[0-9\.]+/[0-9.]+", "/"),
]
for pattern, repl in pattern_replacements:
output = re.sub(pattern, repl, output)