This commit is contained in:
David Kennedy 2025-01-20 07:10:12 -05:00
parent 96618ee2bc
commit 6bf52f0015
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
3 changed files with 2 additions and 2 deletions

View file

@ -164,7 +164,6 @@ class DomainSuborganizationForm(forms.ModelForm):
sub_organization = forms.ModelChoiceField(
label="Suborganization name",
queryset=Suborganization.objects.none(),
empty_label="⎯ (No suborganization)",
required=False,
widget=ComboboxWidget,
)

View file

@ -2933,7 +2933,7 @@ class TestRequestingEntity(WebTest):
@override_flag("organization_feature", active=True)
@override_flag("organization_requests", active=True)
# @less_console_noise_decorator
@less_console_noise_decorator
def test_requesting_entity_page_errors(self):
"""Tests that we get the expected form errors on requesting entity"""
domain_request = completed_domain_request(user=self.user, portfolio=self.portfolio)

View file

@ -368,6 +368,7 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
and from the database if `use_db` is True (provided that record exists).
An empty form will be provided if neither of those are true.
"""
kwargs = {
"files": files,
"prefix": self.steps.current,