mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-24 03:30:50 +02:00
Linting cleanup
This commit is contained in:
parent
c109d383c0
commit
9c800e1f1d
3 changed files with 4 additions and 5 deletions
|
@ -273,7 +273,7 @@ class User(AbstractUser):
|
||||||
# Field specific permission checks
|
# Field specific permission checks
|
||||||
def has_view_suborganization(self):
|
def has_view_suborganization(self):
|
||||||
return self._has_portfolio_permission(UserPortfolioPermissionChoices.VIEW_SUBORGANIZATION)
|
return self._has_portfolio_permission(UserPortfolioPermissionChoices.VIEW_SUBORGANIZATION)
|
||||||
|
|
||||||
def has_edit_suborganization(self):
|
def has_edit_suborganization(self):
|
||||||
return self._has_portfolio_permission(UserPortfolioPermissionChoices.EDIT_SUBORGANIZATION)
|
return self._has_portfolio_permission(UserPortfolioPermissionChoices.EDIT_SUBORGANIZATION)
|
||||||
|
|
||||||
|
|
|
@ -152,7 +152,7 @@ def in_path(url, path):
|
||||||
return url in path
|
return url in path
|
||||||
|
|
||||||
|
|
||||||
@register.filter(name='and')
|
@register.filter(name="and")
|
||||||
def and_filter(value, arg):
|
def and_filter(value, arg):
|
||||||
"""
|
"""
|
||||||
Implements logical AND operation in templates.
|
Implements logical AND operation in templates.
|
||||||
|
|
|
@ -1643,7 +1643,7 @@ class TestDomainSuborganization(TestDomainOverview):
|
||||||
# Create a portfolio and two suborgs
|
# Create a portfolio and two suborgs
|
||||||
portfolio = Portfolio.objects.create(creator=self.user, organization_name="Ice Cream")
|
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")
|
||||||
suborg_2 = Suborganization.objects.create(portfolio=portfolio, name="Chocolate")
|
Suborganization.objects.create(portfolio=portfolio, name="Chocolate")
|
||||||
|
|
||||||
# Create an unrelated portfolio
|
# Create an unrelated portfolio
|
||||||
unrelated_portfolio = Portfolio.objects.create(creator=self.user, organization_name="Fruit")
|
unrelated_portfolio = Portfolio.objects.create(creator=self.user, organization_name="Fruit")
|
||||||
|
@ -1676,8 +1676,7 @@ class TestDomainSuborganization(TestDomainOverview):
|
||||||
self.assertNotContains(page, "Save")
|
self.assertNotContains(page, "Save")
|
||||||
|
|
||||||
self.assertContains(
|
self.assertContains(
|
||||||
page,
|
page, "The suborganization for this domain can only be updated by a organization administrator."
|
||||||
"The suborganization for this domain can only be updated by a organization administrator."
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@less_console_noise_decorator
|
@less_console_noise_decorator
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue