File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
tests/microsoft-agents-a365-tooling-unittest/utils Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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."""
You can’t perform that action at this time.
0 commit comments