mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-15 17:17:02 +02:00
Remove unused variable names
This commit is contained in:
parent
92f269c69e
commit
9a44f6b65a
1 changed files with 6 additions and 6 deletions
|
@ -939,11 +939,11 @@ class TestDomainRequestAdmin(MockEppLib):
|
|||
def test_domain_request_senior_official_is_alphabetically_sorted(self):
|
||||
"""Tests if the senior offical dropdown is alphanetically sorted in the django admin display"""
|
||||
|
||||
third_official = SeniorOfficial.objects.get_or_create(
|
||||
SeniorOfficial.objects.get_or_create(
|
||||
first_name="mary", last_name="joe", title="some other guy"
|
||||
)
|
||||
first_official = SeniorOfficial.objects.get_or_create(first_name="alex", last_name="smoe", title="some guy")
|
||||
second_official = SeniorOfficial.objects.get_or_create(first_name="Zoup", last_name="Soup", title="title")
|
||||
SeniorOfficial.objects.get_or_create(first_name="alex", last_name="smoe", title="some guy")
|
||||
SeniorOfficial.objects.get_or_create(first_name="Zoup", last_name="Soup", title="title")
|
||||
|
||||
contact, _ = Contact.objects.get_or_create(user=self.staffuser)
|
||||
domain_request = completed_domain_request(submitter=contact, name="city1.gov")
|
||||
|
@ -2948,11 +2948,11 @@ class TestDomainInformationAdmin(TestCase):
|
|||
def test_domain_information_senior_official_is_alphabetically_sorted(self):
|
||||
"""Tests if the senior offical dropdown is alphanetically sorted in the django admin display"""
|
||||
|
||||
third_official = SeniorOfficial.objects.get_or_create(
|
||||
SeniorOfficial.objects.get_or_create(
|
||||
first_name="mary", last_name="joe", title="some other guy"
|
||||
)
|
||||
first_official = SeniorOfficial.objects.get_or_create(first_name="alex", last_name="smoe", title="some guy")
|
||||
second_official = SeniorOfficial.objects.get_or_create(first_name="Zoup", last_name="Soup", title="title")
|
||||
SeniorOfficial.objects.get_or_create(first_name="alex", last_name="smoe", title="some guy")
|
||||
SeniorOfficial.objects.get_or_create(first_name="Zoup", last_name="Soup", title="title")
|
||||
|
||||
contact, _ = Contact.objects.get_or_create(user=self.staffuser)
|
||||
domain_request = completed_domain_request(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue