mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-01 15:34:53 +02:00
Fix variable naming
This commit is contained in:
parent
324a1a29c5
commit
2fd9611ca1
1 changed files with 2 additions and 2 deletions
|
@ -1534,7 +1534,7 @@ class TestDomainSuborganization(TestDomainOverview):
|
|||
|
||||
# Create a portfolio
|
||||
portfolio = Portfolio.objects.create(creator=self.user, organization_name="Ice Cream")
|
||||
_suborg = Suborganization.objects.create(portfolio=portfolio, name="Vanilla")
|
||||
suborg = Suborganization.objects.create(portfolio=portfolio, name="Vanilla")
|
||||
|
||||
# Add the portfolio to the domain_information object
|
||||
self.domain_information.portfolio = portfolio
|
||||
|
@ -1565,7 +1565,7 @@ class TestDomainSuborganization(TestDomainOverview):
|
|||
|
||||
# Cleanup
|
||||
self.domain_information.delete()
|
||||
_suborg.delete()
|
||||
suborg.delete()
|
||||
portfolio.delete()
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue