From d6205bc1fffbe081dfab14978783651f2455c9f5 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Tue, 3 Oct 2023 11:14:21 -0400 Subject: [PATCH] 835 - Change "new template" wording --- app/main/forms.py | 2 +- tests/app/main/views/test_templates.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main/forms.py b/app/main/forms.py index 4305d1626..0be785a5e 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1980,7 +1980,7 @@ class TemplateAndFoldersSelectionForm(Form): None, [ # ('email', 'Email') if 'email' in available_template_types else None, - ("sms", "Text message") + ("sms", "Start with a blank template") if "sms" in available_template_types else None, ("copy-existing", "Copy an existing template") diff --git a/tests/app/main/views/test_templates.py b/tests/app/main/views/test_templates.py index 370d5b5f3..32b717460 100644 --- a/tests/app/main/views/test_templates.py +++ b/tests/app/main/views/test_templates.py @@ -310,7 +310,7 @@ def test_should_show_live_search_if_service_has_lots_of_folders( ], [ # 'Email', - "Text message", + "Start with a blank template", "Copy an existing template", ], ), @@ -323,7 +323,7 @@ def test_should_show_live_search_if_service_has_lots_of_folders( ], [ # 'Email', - "Text message", + "Start with a blank template", "Copy an existing template", ], ),