Skip to content

Commit

Permalink
Make lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve committed Mar 18, 2021
1 parent 0a6b8d9 commit a112766
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_bootstrap_field.py
Expand Up @@ -77,7 +77,9 @@ def test_password(self):
# # strip out newlines and spaces around newlines
# res = "".join(line.strip() for line in res.split("\n"))
# res = BeautifulSoup(res, "html.parser")
# form_group = self._select_one_element(res, ".form-group", "RadioSelect should be rendered inside a .form-group")
# form_group = self._select_one_element(
# res,
# ".form-group", "RadioSelect should be rendered inside a .form-group")
# radio = self._select_one_element(form_group, ".radio", "There should be a .radio inside .form-group")
# self.assertIn("radio-success", radio["class"], "The radio select should have the class 'radio-success'")
# elements = radio.find_all("div", class_="form-check")
Expand Down

0 comments on commit a112766

Please sign in to comment.