From daa8868fd83e0afe5728f3762b7c82f025cf8bee Mon Sep 17 00:00:00 2001 From: Leo Hemsted Date: Fri, 31 May 2019 12:22:54 +0100 Subject: [PATCH] make test marginally more readable --- tests/app/main/views/test_platform_admin.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/app/main/views/test_platform_admin.py b/tests/app/main/views/test_platform_admin.py index 44a5bb81f..633d882c0 100644 --- a/tests/app/main/views/test_platform_admin.py +++ b/tests/app/main/views/test_platform_admin.py @@ -976,9 +976,12 @@ def test_get_live_services_report(client, platform_admin_user, mocker): assert report.strip() == ( 'Service ID,Organisation,Organisation type,Service name,Consent to research,Main contact,Contact email,' + 'Contact mobile,Live date,SMS volume intent,Email volume intent,Letter volume intent,SMS sent this year,' - + 'Emails sent this year,Letters sent this year\r\n1,Forest,Ecosystem,jessie the oak tree,True,Forest fairy,' - + 'forest.fairy@digital.cabinet-office.gov.uk,+447700900986,29-03-2014,100,50,20,300,1200,0\r\n2,Forest,' - + 'Ecosystem,james the pine tree,,,,,,,60,0,0,0,0' + + 'Emails sent this year,Letters sent this year\r\n' + + + '1,Forest,Ecosystem,jessie the oak tree,True,Forest fairy,forest.fairy@digital.cabinet-office.gov.uk,' + + '+447700900986,29-03-2014,100,50,20,300,1200,0\r\n' + + + '2,Forest,Ecosystem,james the pine tree,,,,,,,60,0,0,0,0' )