aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/tests/routes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/routes.py b/python/tests/routes.py
index 5ed6e322..ece91d65 100644
--- a/python/tests/routes.py
+++ b/python/tests/routes.py
@@ -7,7 +7,7 @@ from fixtures import *
def test_static_routes(app):
- for route in ('/health', '/robots.txt', '/', '/about'):
+ for route in ('/health.json', '/robots.txt', '/', '/about'):
rv = app.get(route)
assert rv.status_code == 200