Skip to content

Commit 263c640

Browse files
pontemontiCopilot
andauthored
Update tests/tooling/test_mcp_server_configuration.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 3440292 commit 263c640

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/tooling/test_mcp_server_configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,10 @@ def service(self):
254254
@pytest.fixture
255255
def create_test_jwt(self):
256256
"""Fixture to create test JWT tokens."""
257-
import jwt as pyjwt
257+
import jwt
258258

259259
def _create(claims: dict) -> str:
260-
return pyjwt.encode(claims, key="", algorithm="none")
260+
return jwt.encode(claims, key="", algorithm="none")
261261

262262
return _create
263263

0 commit comments

Comments
 (0)