Merge pull request #2269 from alphagov/reword-template-instruction

Reword templates line on go live task list
This commit is contained in:
Chris Hill-Scott
2018-08-30 15:57:54 +01:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -24,8 +24,8 @@
) }}
{{ task_list_item(
has_templates,
'<a href="{}">Add content to
templates to show the kind of messages youll send</a>'.format(
'<a href="{}">Add templates with examples of the content you plan to send
</a>'.format(
url_for('main.choose_template', service_id=current_service.id)
)|safe,
) }}

View File

@@ -509,9 +509,9 @@ def test_should_raise_duplicate_name_handled(
(2, 'Add a team member who can manage settings, team and usage Completed'),
])
@pytest.mark.parametrize('count_of_templates, expected_templates_checklist_item', [
(0, 'Add content to templates to show the kind of messages youll send Not completed'),
(1, 'Add content to templates to show the kind of messages youll send Completed'),
(2, 'Add content to templates to show the kind of messages youll send Completed'),
(0, 'Add templates with examples of the content you plan to send Not completed'),
(1, 'Add templates with examples of the content you plan to send Completed'),
(2, 'Add templates with examples of the content you plan to send Completed'),
])
@pytest.mark.parametrize('count_of_email_templates, reply_to_email_addresses, expected_reply_to_checklist_item', [
pytest.mark.xfail((0, [], ''), raises=IndexError),