Merge pull request #3353 from alphagov/reverse-sort-scheduled-jobs

Reverse sort scheduled jobs
This commit is contained in:
Chris Hill-Scott
2020-03-06 16:40:16 +00:00
committed by GitHub
4 changed files with 18 additions and 13 deletions

View File

@@ -44,14 +44,14 @@ from tests.conftest import (
(
'File Messages to be sent'
),
(
'send_me_later.csv '
'Sending 1 January 2016 at 11:09am 1'
),
(
'even_later.csv '
'Sending 1 January 2016 at 11:09pm 1'
),
(
'send_me_later.csv '
'Sending 1 January 2016 at 11:09am 1'
),
(
'File Status'
),

View File

@@ -668,13 +668,13 @@ def test_uploads_page_shows_scheduled_jobs(
'File Status'
),
(
'send_me_later.csv '
'Sending 1 January 2016 at 11:09am '
'even_later.csv '
'Sending 1 January 2016 at 11:09pm '
'1 text message waiting to send'
),
(
'even_later.csv '
'Sending 1 January 2016 at 11:09pm '
'send_me_later.csv '
'Sending 1 January 2016 at 11:09am '
'1 text message waiting to send'
),
]