Remove comment

This commit is contained in:
Rebecca Hsieh 2025-03-11 11:41:04 -07:00
parent a233420af9
commit d5c5007b34
No known key found for this signature in database
2 changed files with 0 additions and 3 deletions

View file

@ -218,7 +218,6 @@ def available(cls, domain: str) -> bool:
return True
```
### Testing behind logged in pages
To test behind logged in pages with external tools, like `pa11y-ci` or `OWASP Zap`, add

View file

@ -21,7 +21,6 @@ from registrar.models.contact import Contact
from registrar.models.user import User
from registrar.views.utility import StepsHelper
from registrar.utility.enums import Step, PortfolioDomainRequestStep
from registrar.models.utility.generic_helper import get_url_name
logger = logging.getLogger(__name__)
@ -228,7 +227,6 @@ class DomainRequestWizard(TemplateView):
self._domain_request.generic_org_type = portfolio.organization_type
self._domain_request.save()
else:
# Should not see this statement wanyway bc we are creating w portfolio
self._domain_request = DomainRequest.objects.create(creator=self.request.user)
return self._domain_request