fix(tests): update supported clients count to 6 (added claude_connectors)
Some checks failed
Release / Test before release (push) Has been cancelled
Release / Publish to PyPI (push) Has been cancelled
Release / Publish to Docker Hub (push) Has been cancelled
Release / Create GitHub Release (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-31 14:58:59 +02:00
parent 9b70b259bb
commit 68c84b3ece

View File

@@ -23,9 +23,9 @@ class TestSupportedClients:
@pytest.mark.unit @pytest.mark.unit
def test_get_supported_clients(self): def test_get_supported_clients(self):
"""Should return exactly 5 supported client types.""" """Should return all supported client types."""
clients = get_supported_clients() clients = get_supported_clients()
assert len(clients) == 5 assert len(clients) == 6
client_ids = [c["id"] for c in clients] client_ids = [c["id"] for c in clients]
assert "claude_desktop" in client_ids assert "claude_desktop" in client_ids
assert "claude_code" in client_ids assert "claude_code" in client_ids