Skip to content

Commit 0e4243e

Browse files
committed
Remove unnecessary async
1 parent 6c8ff9b commit 0e4243e

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/git/tests/test_server.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import git
44
from mcp_server_git.server import git_checkout, GitServer, Server
55
import shutil
6-
import asyncio
76
from mcp.types import TextContent
87

98
@pytest.fixture
@@ -48,8 +47,7 @@ def test_path_validator_accepts_inside_path(git_server_with_repo, test_repositor
4847
assert validated.exists()
4948
assert validated.is_file()
5049

51-
@pytest.mark.asyncio
52-
async def test_call_tool_uses_configured_repo(test_repository):
50+
def test_call_tool_uses_configured_repo(test_repository):
5351
# Create a git_server with configured repository
5452
git_server = GitServer(test_repository.working_dir)
5553

0 commit comments

Comments
 (0)