mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-04 02:11:11 -05:00
Update to test as per review comments.
However, I am curious if there is evidence that using fake_uuid over creating one in the test is actually faster.
This commit is contained in:
@@ -163,7 +163,7 @@ def process_job(job_id):
|
||||
if template.template_type == 'sms':
|
||||
send_sms.apply_async((
|
||||
str(job.service_id),
|
||||
str(create_uuid()),
|
||||
create_uuid(),
|
||||
encrypted,
|
||||
datetime.utcnow().strftime(DATETIME_FORMAT)),
|
||||
queue='bulk-sms'
|
||||
@@ -172,7 +172,7 @@ def process_job(job_id):
|
||||
if template.template_type == 'email':
|
||||
send_email.apply_async((
|
||||
str(job.service_id),
|
||||
str(create_uuid()),
|
||||
create_uuid(),
|
||||
'"{}" <{}@{}>'.format(
|
||||
service.name,
|
||||
service.email_from,
|
||||
|
||||
Reference in New Issue
Block a user