From 764664febc2286c41fd2dc98d161cf3375c9bc46 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 3 Apr 2019 19:47:42 -0700 Subject: fix unit test for /health.json --- python/tests/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3