summaryrefslogtreecommitdiff
path: root/servers/gitlab_glab/tests/test_integration.py
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-03-31 23:38:35 +0200
committerDawid Rycerz <dawid@rycerz.xyz>2025-03-31 23:38:35 +0200
commitfa91e3fcbdd3b1d70f01de256e1c48fe7726ebd4 (patch)
tree5a76ae36e6fa37af9fb4a9879e6db9aa375c2654 /servers/gitlab_glab/tests/test_integration.py
parent73ee5037001cee54f6364f41e1011099308a15a3 (diff)
Add create_issue tool action
Diffstat (limited to 'servers/gitlab_glab/tests/test_integration.py')
-rw-r--r--servers/gitlab_glab/tests/test_integration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/gitlab_glab/tests/test_integration.py b/servers/gitlab_glab/tests/test_integration.py
index b25e715..6915348 100644
--- a/servers/gitlab_glab/tests/test_integration.py
+++ b/servers/gitlab_glab/tests/test_integration.py
@@ -23,7 +23,7 @@ class TestIntegration:
mock_fastmcp.assert_called_once_with("GitLab CLI", host="127.0.0.1", port=8080)
# Verify tools were registered
- assert mock_server.tool.call_count == 2
+ assert mock_server.tool.call_count == 3 # check_availability, find_project, create_issue
# Verify that the tool decorator was called with functions that have
# working_directory parameter. We can't directly access the decorated functions