From 19764e81511f40fafeb17dff34181788f044fb48 Mon Sep 17 00:00:00 2001 From: CocoByte Date: Mon, 5 Feb 2024 19:14:09 -0700 Subject: [PATCH] Added fake submitted dates to fixtures --- src/registrar/fixtures_applications.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/registrar/fixtures_applications.py b/src/registrar/fixtures_applications.py index 92094b876..9519dfce9 100644 --- a/src/registrar/fixtures_applications.py +++ b/src/registrar/fixtures_applications.py @@ -1,3 +1,4 @@ +import datetime import logging import random from faker import Faker @@ -104,7 +105,7 @@ class DomainApplicationFixture: # Random choice of agency for selects, used as placeholders for testing. else random.choice(DomainApplication.AGENCIES) # nosec ) - + da.submission_date = fake.date() da.federal_type = ( app["federal_type"] if "federal_type" in app