mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fix for BeautifulSoup findAll warnings
This commit is contained in:
parent
13c338c8f1
commit
9becb04e1b
5 changed files with 38 additions and 38 deletions
|
|
@ -337,7 +337,7 @@ def test_permissions_debug(app_client):
|
|||
assert response.status == 200
|
||||
# Should show one failure and one success
|
||||
soup = Soup(response.body, "html.parser")
|
||||
check_divs = soup.findAll("div", {"class": "check"})
|
||||
check_divs = soup.find_all("div", {"class": "check"})
|
||||
checks = [
|
||||
{
|
||||
"action": div.select_one(".check-action").text,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue