more fixes

This commit is contained in:
Kenneth Kehl
2024-05-17 10:25:09 -07:00
parent 7302e4c811
commit 1b172553f5
28 changed files with 127 additions and 107 deletions

View File

@@ -7,7 +7,7 @@ from notifications_utils.safe_string import (
@pytest.mark.parametrize(
"unsafe_string, expected_safe",
("unsafe_string", "expected_safe"),
[
("name with spaces", "name.with.spaces"),
("singleword", "singleword"),
@@ -26,7 +26,7 @@ def test_email_safe_return_dot_separated_email_local_part(unsafe_string, expecte
@pytest.mark.parametrize(
"unsafe_string, expected_safe",
("unsafe_string", "expected_safe"),
[
("name with spaces", "name-with-spaces"),
("singleword", "singleword"),