Updated tests to match the formatting work done in the admin repo

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2024-05-17 17:14:46 -04:00
parent ac4ebacfeb
commit aafa7178f9
30 changed files with 553 additions and 499 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"),