From 84ea4920a03dc0030856ee485233647caf72ca86 Mon Sep 17 00:00:00 2001 From: Rebecca Hsieh Date: Thu, 7 Sep 2023 09:46:32 -0700 Subject: [PATCH] Fix reformatting --- src/registrar/forms/application_wizard.py | 4 +--- src/registrar/tests/test_forms.py | 3 +-- src/registrar/tests/test_views.py | 3 +-- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 1bd1ca3fb..a92831541 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -322,9 +322,7 @@ class AboutYourOrganizationForm(RegistrarForm): ], # TODO-446: Confirm if err msg wording is ok, previously # TODO-446: "Enter the type of work your organization does." - error_messages={ - "required": ("Enter the information about your organization.") - }, + error_messages={"required": ("Enter the information about your organization.")}, ) diff --git a/src/registrar/tests/test_forms.py b/src/registrar/tests/test_forms.py index d8ebdd310..ec012c796 100644 --- a/src/registrar/tests/test_forms.py +++ b/src/registrar/tests/test_forms.py @@ -151,8 +151,7 @@ class TestFormValidation(TestCase): """Response must be less than 1000 characters.""" form = AboutYourOrganizationForm( data={ - "about_your_organization": - "Bacon ipsum dolor amet fatback strip steak pastrami" + "about_your_organization": "Bacon ipsum dolor amet fatback strip steak pastrami" "shankle, drumstick doner chicken landjaeger turkey andouille." "Buffalo biltong chuck pork chop tongue bresaola turkey. Doner" "ground round strip steak, jowl tail chuck ribeye bacon" diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 8b95f65cd..f9f70a817 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -664,8 +664,7 @@ class DomainApplicationTests(TestWithUser, WebTest): # about your organization page if it was successful. self.assertEqual(contact_result.status_code, 302) self.assertEqual( - contact_result["Location"], - "/register/about_your_organization/" + contact_result["Location"], "/register/about_your_organization/" ) def test_application_about_your_organization_special(self):