Skip to content

Commit

Permalink
Fix variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
zandercymatics committed Aug 7, 2024
1 parent 324a1a2 commit 2fd9611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/registrar/tests/test_views_domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ def test_has_suborganization_field_on_overview_with_flag(self):

# 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
Expand Down Expand Up @@ -1565,7 +1565,7 @@ def test_has_suborganization_field_on_overview_with_flag(self):

# Cleanup
self.domain_information.delete()
_suborg.delete()
suborg.delete()
portfolio.delete()


Expand Down

0 comments on commit 2fd9611

Please sign in to comment.