From 557fa51837a57534f8ca486133a412547a98a37e Mon Sep 17 00:00:00 2001 From: David Smith Date: Fri, 17 Nov 2023 05:39:53 +0100 Subject: [PATCH] Refs #32819 -- Added aria-describedby test for widgets with custom id. --- tests/forms_tests/tests/test_forms.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tests/forms_tests/tests/test_forms.py b/tests/forms_tests/tests/test_forms.py index 877571726d..7ea88f0cc8 100644 --- a/tests/forms_tests/tests/test_forms.py +++ b/tests/forms_tests/tests/test_forms.py @@ -3097,6 +3097,23 @@ Options: ', + ) + def test_as_widget_custom_aria_describedby(self): class FoodForm(Form): intl_name = CharField(help_text="The food's international name.")