Skip to content

Commit 53b0d99

Browse files
committed
Fixed formatting in test_utility.py
1 parent 2a453eb commit 53b0d99

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/microsoft-agents-a365-tooling-unittest/utils/test_utility.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ def test_get_mcp_platform_authentication_scope_production(self):
155155
expected = [PROD_MCP_PLATFORM_AUTHENTICATION_SCOPE]
156156
assert result == expected
157157

158-
@patch.dict(os.environ, {"MCP_PLATFORM_AUTHENTICATION_SCOPE": "custom-scope/.default"}, clear=False)
158+
@patch.dict(
159+
os.environ, {"MCP_PLATFORM_AUTHENTICATION_SCOPE": "custom-scope/.default"}, clear=False
160+
)
159161
def test_get_mcp_platform_authentication_scope_custom(self):
160162
"""Test get_mcp_platform_authentication_scope returns custom scope from environment."""
161163
# Act
@@ -170,7 +172,10 @@ def test_constants_values(self):
170172
# Assert
171173
assert MCP_PLATFORM_PROD_BASE_URL == "https://agent365.svc.cloud.microsoft"
172174
assert PPAPI_TOKEN_SCOPE == "https://api.powerplatform.com"
173-
assert PROD_MCP_PLATFORM_AUTHENTICATION_SCOPE == "ea9ffc3e-8a23-4a7d-836d-234d7c7565c1/.default"
175+
assert (
176+
PROD_MCP_PLATFORM_AUTHENTICATION_SCOPE
177+
== "ea9ffc3e-8a23-4a7d-836d-234d7c7565c1/.default"
178+
)
174179

175180
def test_get_tooling_gateway_empty_agent_id(self):
176181
"""Test get_tooling_gateway_for_digital_worker with empty agent ID."""

0 commit comments

Comments
 (0)