From e893959ce5b2c44d67fd59ed230b7eed43ff0018 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 9 Aug 2023 10:31:32 +0200 Subject: [PATCH] Update tests to reflect jupyterlab by default --- tests/test_configurer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_configurer.py b/tests/test_configurer.py index ff549d5..3c1db3d 100644 --- a/tests/test_configurer.py +++ b/tests/test_configurer.py @@ -58,8 +58,7 @@ def test_app_default(): Test default application with no config overrides. """ c = apply_mock_config({}) - # default_url is not set, so JupyterHub will pick default. - assert "default_url" not in c.Spawner + assert c.Spawner.default_url == "/lab" def test_app_classic():