diff --git a/jupyterhub/tests/test_api.py b/jupyterhub/tests/test_api.py index 93258fa9..da5a1222 100644 --- a/jupyterhub/tests/test_api.py +++ b/jupyterhub/tests/test_api.py @@ -1500,6 +1500,7 @@ def test_get_services(app, mockservice_url): 'pid': mockservice.proc.pid, 'prefix': mockservice.server.base_url, 'url': mockservice.url, + 'info': {}, } } @@ -1526,6 +1527,7 @@ def test_get_service(app, mockservice_url): 'pid': mockservice.proc.pid, 'prefix': mockservice.server.base_url, 'url': mockservice.url, + 'info': {}, } r = yield api_request(app, 'services/%s' % mockservice.name,