From 4b743ea62a8f8156b64f414ab1c1830fd702b6fc Mon Sep 17 00:00:00 2001 From: Chris <66376200+crickman@users.noreply.github.com> Date: Thu, 25 Sep 2025 12:37:54 -0700 Subject: [PATCH] Fixed (#921) --- .../AzureAgentProviderTest.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs b/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs index 2412937e48..a66240990b 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs +++ b/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs @@ -3,6 +3,7 @@ using System; using System.Linq; using System.Threading.Tasks; +using Azure; using Azure.AI.Agents.Persistent; using Azure.Identity; using Microsoft.Agents.AI; @@ -69,7 +70,7 @@ public sealed class AzureAgentProviderTest(ITestOutputHelper output) : WorkflowT Assert.Equal(agent2Id, agent2.Id); // Act & Assert - await Assert.ThrowsAsync(() => provider.GetAgentAsync(agentName)); + await Assert.ThrowsAsync(() => provider.GetAgentAsync(agentName)); } private async ValueTask CreateAgentAsync(string? name = null)