From 5469e21e74bcddd8731bac947ef7331a030ede5d Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Wed, 3 Apr 2024 16:19:45 -0400 Subject: [PATCH] Fix removal of `https.enabled` --- tests/test_traefik.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_traefik.py b/tests/test_traefik.py index b060be4c..f9502662 100644 --- a/tests/test_traefik.py +++ b/tests/test_traefik.py @@ -64,7 +64,7 @@ def test_default_config(tmpdir, tljh_dir): def test_letsencrypt_config(tljh_dir): state_dir = config.STATE_DIR - config.set_config_value(config.CONFIG_FILE, "https.enabled") + config.set_config_value(config.CONFIG_FILE, "https.enabled", True) config.set_config_value( config.CONFIG_FILE, "https.letsencrypt.email", "fake@jupyter.org" )