housekeep: move templates/partials/widgets/* to templates/partials/

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2022-01-18 08:24:46 -08:00
parent dbbae97038
commit 2feb9b90b2
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
6 changed files with 7 additions and 7 deletions

View file

@ -142,7 +142,7 @@ def test_pager_no_results():
""" Test the pager partial with no results. """
num_packages = 0
context = pager_context(num_packages)
body = base_template("partials/widgets/pager.html").render(context)
body = base_template("partials/pager.html").render(context)
root = parse_root(body)
stats = root.xpath('//div[@class="pkglist-stats"]/p')
@ -154,7 +154,7 @@ def test_pager():
""" Test the pager partial with two pages of results. """
num_packages = 100
context = pager_context(num_packages)
body = base_template("partials/widgets/pager.html").render(context)
body = base_template("partials/pager.html").render(context)
root = parse_root(body)
stats = root.xpath('//div[@class="pkglist-stats"]/p')