Skip to content

Commit

Permalink
Reformat (#674)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve committed Jan 23, 2024
1 parent 7cdf868 commit 0fcf60e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tests/test_forms.py
Expand Up @@ -117,17 +117,19 @@ def test_checkbox_multiple_select(self):
res = render_form_field("category2")
expected_html = (
'<div class="form-group bootstrap4-req">'
'<label>Category2</label>'
"<label>Category2</label>"
'<div class="checkbox" id="id_category2">'
'<div class="form-check">'
'<label class="form-check-label" for="id_category2_0">'
'<input class="form-check-input" id="id_category2_0" name="category2" title="Check as many as you like." type="checkbox" value="1">'
'<input class="form-check-input" id="id_category2_0" name="category2"'
' title="Check as many as you like." type="checkbox" value="1">'
"Radio 1"
"</label>"
"</div>"
'<div class="form-check">'
'<label class="form-check-label" for="id_category2_1">'
'<input class="form-check-input" id="id_category2_1" name="category2" title="Check as many as you like." type="checkbox" value="2">'
'<input class="form-check-input" id="id_category2_1" name="category2"'
' title="Check as many as you like." type="checkbox" value="2">'
"Radio 2"
"</label>"
"</div>"
Expand Down

0 comments on commit 0fcf60e

Please sign in to comment.