This commit is contained in:
David Kennedy 2024-11-08 12:25:30 -05:00
parent 4a07c9a4ff
commit f6062daea3
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -87,9 +87,12 @@ class GetPortfolioJsonTest(TestCase):
first_name="John", last_name="Doe", title="Director", federal_agency=self.agency
)
self.portfolio = Portfolio.objects.create(
creator=self.user, federal_agency=self.agency, senior_official=self.senior_official,
organization_name="Org name", organization_type=Portfolio.OrganizationChoices.FEDERAL,
)
creator=self.user,
federal_agency=self.agency,
senior_official=self.senior_official,
organization_name="Org name",
organization_type=Portfolio.OrganizationChoices.FEDERAL,
)
self.api_url = reverse("get-portfolio-json")