tests: fix invalid escape

This made the common mistake of putting `\.` instead of `\\.`
in a non-raw string.
This commit is contained in:
Misty De Méo 2025-07-18 16:37:33 -07:00
parent 60f363ca89
commit 06e4e8c3c9

View file

@ -177,7 +177,7 @@ def test_robots_connection_failure():
def test_scoping(): def test_scoping():
test_scope = yaml.safe_load( test_scope = yaml.safe_load(
""" r"""
max_hops: 100 max_hops: 100
accepts: accepts:
- url_match: REGEX_MATCH - url_match: REGEX_MATCH