aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-04-03 19:47:42 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-04-03 19:47:42 -0700
commit764664febc2286c41fd2dc98d161cf3375c9bc46 (patch)
tree15623665b8b8399b54ae0e532823e1845a97a280
parent855f2c44de8a900766bdc1f80fb8d3b54e0871e9 (diff)
downloadfatcat-764664febc2286c41fd2dc98d161cf3375c9bc46.tar.gz
fatcat-764664febc2286c41fd2dc98d161cf3375c9bc46.zip
fix unit test for /health.json
-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