From ab7411d9fd0c7fa2d0cb744bf22b4ea8846226f2 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Sat, 25 Oct 2025 22:07:46 +0200 Subject: [PATCH] test: Fix tests --- tests/test_cli.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 374305a..4404ab6 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -253,9 +253,17 @@ def test_default_values(runner, clean_env, monkeypatch): _ = runner.invoke(run, []) # Verify default values - assert ( - captured_env["NEXTCLOUD_OIDC_SCOPES"] - == "openid profile email notes:read notes:write calendar:read calendar:write contacts:read contacts:write cookbook:read cookbook:write deck:read deck:write tables:read tables:write files:read files:write sharing:read sharing:write" + assert captured_env["NEXTCLOUD_OIDC_SCOPES"] == ( + "openid profile email " + "notes:read notes:write " + "calendar:read calendar:write " + "todo:read todo:write " + "contacts:read contacts:write " + "cookbook:read cookbook:write " + "deck:read deck:write " + "tables:read tables:write " + "files:read files:write " + "sharing:read sharing:write" ) assert captured_env["NEXTCLOUD_OIDC_TOKEN_TYPE"] == "bearer" assert captured_env["NEXTCLOUD_MCP_SERVER_URL"] == "http://localhost:8000"