Fix tests

This commit is contained in:
Ben Sturmfels 2024-03-20 16:23:36 +11:00
parent 43e7c7e358
commit 661603c3be
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -36,7 +36,8 @@ def test_annual_report_file_served(rf):
def test_path_traversal_404s(rf): def test_path_traversal_404s(rf):
assert (settings.BASE_DIR / 'static' / 'about/../../settings.py').exists() # Will work in development only
request = rf.get('/about/../../settings.py') assert (settings.BASE_DIR / 'static' / 'about/../../../conservancy-website.sqlite3').exists()
request = rf.get('/about/../../../conservancy-website.sqlite3')
with pytest.raises(Http404): with pytest.raises(Http404):
views.index(request) views.index(request)