From ab55650871eee80990394fdba93ff5779a97615e Mon Sep 17 00:00:00 2001 From: Ken Tsang Date: Tue, 24 Oct 2017 14:32:07 +0100 Subject: [PATCH] Reordered imports --- tests/app/celery/test_ftp_update_tasks.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/app/celery/test_ftp_update_tasks.py b/tests/app/celery/test_ftp_update_tasks.py index 6239d9285..639e18c9e 100644 --- a/tests/app/celery/test_ftp_update_tasks.py +++ b/tests/app/celery/test_ftp_update_tasks.py @@ -7,21 +7,21 @@ from flask import current_app from app.models import ( Job, Notification, + NOTIFICATION_CREATED, NOTIFICATION_DELIVERED, NOTIFICATION_FAILED, NOTIFICATION_SENDING, - NOTIFICATION_CREATED, - NOTIFICATION_TECHNICAL_FAILURE, - NOTIFICATION_STATUS_LETTER_RECEIVED + NOTIFICATION_STATUS_LETTER_RECEIVED, + NOTIFICATION_TECHNICAL_FAILURE ) from app.dao.notifications_dao import dao_update_notifications_by_reference from app.celery.tasks import ( - update_job_to_sent_to_dvla, + process_updates_from_file, update_dvla_job_to_error, + update_job_to_sent_to_dvla, update_letter_notifications_statuses, - update_letter_notifications_to_sent_to_dvla, update_letter_notifications_to_error, - process_updates_from_file + update_letter_notifications_to_sent_to_dvla ) from tests.app.db import create_notification