From 4522917c23304b8e43dfdff568b2877ae28acb6a Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 3 Aug 2018 16:17:22 +0200 Subject: [PATCH] fix manual ssl config test --- tests/test_traefik.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_traefik.py b/tests/test_traefik.py index 9d8294b..0d811ec 100644 --- a/tests/test_traefik.py +++ b/tests/test_traefik.py @@ -88,6 +88,10 @@ def test_manual_ssl_config(tljh_dir): "https": { "address": ":443", "backend": "jupyterhub", - "tls": {"key": "/path/to/ssl.key", "cert": "/path/to/ssl.cert"}, + "tls": { + "certificates": [ + {"certFile": "/path/to/ssl.cert", "keyFile": "/path/to/ssl.key"} + ] + }, }, }