From 68c84b3ece8acb01f1e908a6c87b339fc6ed4373 Mon Sep 17 00:00:00 2001 From: airano-ir Date: Tue, 31 Mar 2026 14:58:59 +0200 Subject: [PATCH] fix(tests): update supported clients count to 6 (added claude_connectors) Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/test_config_snippets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_config_snippets.py b/tests/test_config_snippets.py index a7bb0d3..6d2f78e 100644 --- a/tests/test_config_snippets.py +++ b/tests/test_config_snippets.py @@ -23,9 +23,9 @@ class TestSupportedClients: @pytest.mark.unit def test_get_supported_clients(self): - """Should return exactly 5 supported client types.""" + """Should return all supported client types.""" clients = get_supported_clients() - assert len(clients) == 5 + assert len(clients) == 6 client_ids = [c["id"] for c in clients] assert "claude_desktop" in client_ids assert "claude_code" in client_ids