Fix variable naming

This commit is contained in:
zandercymatics 2024-08-07 11:50:59 -06:00
parent 324a1a29c5
commit 2fd9611ca1
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -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()