diff --git a/src/registrar/admin.py b/src/registrar/admin.py index a3e8e6d2c..96b8aaa33 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -275,7 +275,7 @@ class DomainApplicationAdmin(ListHeaderAdmin): elif obj.status == models.DomainApplication.SUBMITTED: # This is an fsm in model which will throw an error if the # transition condition is violated, so we roll back the - # status to what it was before the admn user changed it and + # status to what it was before the admin user changed it and # let the fsm method set it. Same comment applies to # transition method calls below. obj.status = original_obj.status diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index 627e4c627..5f78eac3c 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -152,7 +152,7 @@ class TestDomainApplicationAdmin(TestCase): # Perform assertions on the mock call itself mock_client_instance.send_email.assert_called_once() - + def test_save_model_sets_approved_domain(self): # make sure there is no user with this email EMAIL = "mayor@igorville.gov"