1134 - Changing all instances of the word "brackets" to "parenthesis"

This commit is contained in:
Jonathan Bobel
2025-03-20 10:29:29 -04:00
parent a5ddf8038b
commit fe098eca22
20 changed files with 92 additions and 69 deletions

View File

@@ -8,8 +8,8 @@ from notifications_utils.field import Placeholder
@pytest.mark.parametrize(
("body", "expected"),
[
("((with-brackets))", "with-brackets"),
("without-brackets", "without-brackets"),
("((with-parenthesis))", "with-parenthesis"),
("without-parenthesis", "without-parenthesis"),
],
)
def test_placeholder_returns_name(body, expected):