mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fixed broken footer test
This commit is contained in:
parent
e7dd3434e1
commit
e5f5034bcd
1 changed files with 1 additions and 1 deletions
|
|
@ -1058,7 +1058,7 @@ def assert_querystring_equal(expected, actual):
|
|||
|
||||
|
||||
def assert_footer_links(soup):
|
||||
footer_links = soup.find("div", {"class": "ft"}).findAll("a")
|
||||
footer_links = soup.find("footer").findAll("a")
|
||||
assert 4 == len(footer_links)
|
||||
datasette_link, license_link, source_link, about_link = footer_links
|
||||
assert "Datasette" == datasette_link.text.strip()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue