mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Fixed #29038 -- Removed closing slash from HTML void tags.
This commit is contained in:
parent
4b0f39d9fb
commit
ff05de760c
112 changed files with 1487 additions and 1483 deletions
|
@ -11,5 +11,5 @@ class NumberInputTests(WidgetTest):
|
|||
widget = NumberInput(attrs={'max': 12345, 'min': 1234, 'step': 9999})
|
||||
self.check_html(
|
||||
widget, 'name', 'value',
|
||||
'<input type="number" name="name" value="value" max="12345" min="1234" step="9999" />'
|
||||
'<input type="number" name="name" value="value" max="12345" min="1234" step="9999">'
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue