From 319e8a106209a305e2ca16fbb855d572fd5fd7d0 Mon Sep 17 00:00:00 2001 From: Min RK Date: Mon, 28 May 2018 14:09:44 +0200 Subject: [PATCH] update service models in tests --- jupyterhub/tests/test_api.py | 2 ++ 1 file changed, 2 insertions(+) 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,