From 9d198458d5a0652d601608c773a53d7fb45c1356 Mon Sep 17 00:00:00 2001 From: Christian Ledermann Date: Thu, 31 Oct 2024 11:45:52 +0000 Subject: [PATCH] Update tests/hypothesis/common.py Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- tests/hypothesis/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hypothesis/common.py b/tests/hypothesis/common.py index 80df8322..a3049d3a 100644 --- a/tests/hypothesis/common.py +++ b/tests/hypothesis/common.py @@ -23,7 +23,7 @@ from hypothesis import strategies as st -ID_TEXT = string.ascii_letters + string.digits + string.punctuation +ID_TEXT = string.ascii_letters + string.digits + ".-_" nc_name = partial( st.from_regex, regex=re.compile(r"^[A-Za-z_][\w.-]*$"),