Refs #25300 -- Fixed reference to TextInput in a test.
This commit is contained in:
parent
f2f8972def
commit
dae81c6ec6
|
@ -2301,8 +2301,8 @@ class FormsTestCase(SimpleTestCase):
|
||||||
unless it is `None`.
|
unless it is `None`.
|
||||||
"""
|
"""
|
||||||
class SomeForm(Form):
|
class SomeForm(Form):
|
||||||
field = CharField(widget=forms.TextInput(attrs={'id': 'myCustomID'}))
|
field = CharField(widget=TextInput(attrs={'id': 'myCustomID'}))
|
||||||
field_none = CharField(widget=forms.TextInput(attrs={'id': None}))
|
field_none = CharField(widget=TextInput(attrs={'id': None}))
|
||||||
|
|
||||||
form = SomeForm()
|
form = SomeForm()
|
||||||
self.assertEqual(form['field'].id_for_label, 'myCustomID')
|
self.assertEqual(form['field'].id_for_label, 'myCustomID')
|
||||||
|
|
Loading…
Reference in New Issue