This commit is contained in:
Rachid Mrad 2024-10-02 19:34:36 -04:00
parent 98b417bc44
commit b51b20a075
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View file

@ -18,13 +18,13 @@ from registrar.models import (
import boto3_mocking
from registrar.utility.constants import BranchChoices
from registrar.utility.errors import FSMDomainRequestError
from .common import (
MockSESClient,
less_console_noise,
completed_domain_request,
set_domain_request_investigators,
create_test_user,
)
from django_fsm import TransitionNotAllowed

View file

@ -82,7 +82,6 @@ class DomainRequestTests(TestWithUser, WebTest):
response = self.app.get(f"/domain-request/{domain_request.id}")
# Ensure that the date is still set to None
self.assertIsNone(domain_request.last_status_update)
print(response)
# We should still grab a date for this field in this event - but it should come from the audit log instead
self.assertContains(response, "Started on:")
self.assertContains(response, fixed_date.strftime("%B %-d, %Y"))