Remove tick banner

I’d like to see if we can get away without this now that the page updates. In
research the ‘We’ve started’ part of the message confused people, especially
when they’d only sent one message.
This commit is contained in:
Chris Hill-Scott
2016-03-02 21:19:02 +00:00
parent b31c9fbc0d
commit 990e626631
2 changed files with 1 additions and 2 deletions

View File

@@ -230,7 +230,6 @@ def check_messages(service_id, upload_id):
else:
raise e
flash('Weve started sending your messages', 'default_with_tick')
return redirect(
url_for('main.view_job', service_id=service_id, job_id=upload_id)
)

View File

@@ -265,5 +265,5 @@ def test_create_job_should_call_api(
response = client.post(url, data=job_data, follow_redirects=True)
assert response.status_code == 200
assert 'Weve started sending your messages' in response.get_data(as_text=True)
assert original_file_name in response.get_data(as_text=True)
mock_create_job.assert_called_with(job_id, service_id, template_id, original_file_name, notification_count)