From a8c6c40b2bd557274b139f3398b585dd1de539b5 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 16 Dec 2021 22:26:24 -0500 Subject: [PATCH] switch jhub to classic test --- tests/test_configurer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_configurer.py b/tests/test_configurer.py index 29c073a..ff549d5 100644 --- a/tests/test_configurer.py +++ b/tests/test_configurer.py @@ -62,12 +62,12 @@ def test_app_default(): assert "default_url" not in c.Spawner -def test_app_jupyterlab(): +def test_app_classic(): """ - Test setting JupyterLab as default application + Test setting classic as default application """ - c = apply_mock_config({"user_environment": {"default_app": "jupyterlab"}}) - assert c.Spawner.default_url == "/lab" + c = apply_mock_config({"user_environment": {"default_app": "classic"}}) + assert c.Spawner.default_url == "/tree" def test_auth_default():