From eebdb0719c74f1b3545365798a60cb211e3f8a11 Mon Sep 17 00:00:00 2001 From: Pk Patel <46714886+The5cheduler@users.noreply.github.com> Date: Fri, 26 Sep 2025 12:43:08 -0400 Subject: [PATCH] updating the test error messaging --- tests/forms_tests/tests/test_forms.py | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/tests/forms_tests/tests/test_forms.py b/tests/forms_tests/tests/test_forms.py index 6ccf043dd1..fab026079f 100644 --- a/tests/forms_tests/tests/test_forms.py +++ b/tests/forms_tests/tests/test_forms.py @@ -1714,26 +1714,11 @@ aria-describedby="id_birthday_error"> class FooForm(Form): the_field = CharField(max_length=100) - exc = ValidationError({"the_field": "This field has an error."}) - form = FooForm() - form.add_error("the_field", exc) - self.assertEqual(form.errors, {"the_field": ["This field has an error."]}) - - def test_add_error_validation_error_dict_multiple_fields(self): - class FooForm(Form): - the_field = CharField(max_length=100) - another_field = CharField(max_length=100) - - exc = ValidationError( - { - "the_field": "Something is wrong with the field.", - "another_field": "Something is wrong with this other field.", - } - ) + exc = ValidationError({"the_field": "Something is wrong with the field."}) form = FooForm() msg = ( "The argument `field` must be `None` when the `error` argument " - "contains errors for multiple fields." + "is a ValidationError with an error_dict." ) with self.assertRaisesMessage(TypeError, msg): form.add_error("the_field", exc)