From 46e404556801c978a8218957f28cacbf8f796818 Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Wed, 20 Mar 2024 15:08:21 -0400 Subject: [PATCH] Update `test_proxy` tests --- integration-tests/test_proxy.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/integration-tests/test_proxy.py b/integration-tests/test_proxy.py index cc9d766..f758655 100644 --- a/integration-tests/test_proxy.py +++ b/integration-tests/test_proxy.py @@ -63,9 +63,9 @@ def test_manual_https(preserve_config): "/CN=tljh.jupyer.org", ] ) - set_config_value(CONFIG_FILE, "https.enabled", True) - set_config_value(CONFIG_FILE, "https.tls.key", key) - set_config_value(CONFIG_FILE, "https.tls.cert", cert) + set_config_value(CONFIG_FILE, "https.enabled", True, True) + set_config_value(CONFIG_FILE, "https.tls.key", key, True) + set_config_value(CONFIG_FILE, "https.tls.cert", cert, True) reload_component("proxy") for i in range(10): time.sleep(i) @@ -89,7 +89,7 @@ def test_manual_https(preserve_config): # cleanup shutil.rmtree(ssl_dir) - set_config_value(CONFIG_FILE, "https.enabled", False) + set_config_value(CONFIG_FILE, "https.enabled", False, True) reload_component("proxy")