mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 09:51:11 -05:00
More fixes, removing literal "created" from code.
Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
@@ -71,7 +71,7 @@ def create_sample_notification(
|
||||
job=None,
|
||||
job_row_number=None,
|
||||
to_field=None,
|
||||
status="created",
|
||||
status=NotificationStatus.CREATED,
|
||||
provider_response=None,
|
||||
reference=None,
|
||||
created_at=None,
|
||||
@@ -456,7 +456,7 @@ def sample_notification(notify_db_session):
|
||||
"service": service,
|
||||
"template_id": template.id,
|
||||
"template_version": template.version,
|
||||
"status": "created",
|
||||
"status": NotificationStatus.CREATED,
|
||||
"reference": None,
|
||||
"created_at": created_at,
|
||||
"sent_at": None,
|
||||
@@ -499,7 +499,7 @@ def sample_email_notification(notify_db_session):
|
||||
"service": service,
|
||||
"template_id": template.id,
|
||||
"template_version": template.version,
|
||||
"status": "created",
|
||||
"status": NotificationStatus.CREATED,
|
||||
"reference": None,
|
||||
"created_at": created_at,
|
||||
"billable_units": 0,
|
||||
|
||||
Reference in New Issue
Block a user