Skip to content

Commit

Permalink
Fixed broken footer test
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Oct 27, 2020
1 parent e7dd343 commit e5f5034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit e5f5034

Please sign in to comment.