From 5dcc5e4a13a0a35e8b463c6ef54510f947b2fdeb Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:07:12 -0700 Subject: [PATCH] Update test_admin.py --- src/registrar/tests/test_admin.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index eac2bfdc8..c36cf649f 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -1013,7 +1013,10 @@ class TestDomainApplicationAdmin(MockEppLib): self.assertNotIn(application_2, current_dropdown) def test_investigator_list_is_alphabetically_sorted(self): - """ """ + """ + This test verifies that filter list for the 'investigator' + is displayed alphabetically + """ # Create a mock DomainApplication object, with a fake investigator application: DomainApplication = generic_domain_object("application", "SomeGuy") investigator_user = User.objects.filter(username=application.investigator.username).get()