diff options
Diffstat (limited to 'python/tests/web_routes.py')
-rw-r--r-- | python/tests/web_routes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tests/web_routes.py b/python/tests/web_routes.py index 889bdd90..3af5369b 100644 --- a/python/tests/web_routes.py +++ b/python/tests/web_routes.py @@ -11,5 +11,6 @@ def test_static_routes(app): rv = app.get(route) assert rv.status_code == 200 + assert app.get("/search").status_code == 302 assert app.get("/static/bogus/route").status_code == 404 |