From 7a1475725dad7f7755d8a58e5b6fcd8cd9dd328f Mon Sep 17 00:00:00 2001 From: Jacob Alber Date: Thu, 28 May 2026 11:11:03 -0400 Subject: [PATCH] fixup: Integraitaon tests --- .../SessionPersistenceTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/tests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.IntegrationTests/SessionPersistenceTests.cs b/dotnet/tests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.IntegrationTests/SessionPersistenceTests.cs index 785a3b2e00..33b842bf34 100644 --- a/dotnet/tests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.IntegrationTests/SessionPersistenceTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.IntegrationTests/SessionPersistenceTests.cs @@ -102,7 +102,7 @@ public sealed class SessionPersistenceTests : IAsyncDisposable // Register agent using hosting DI pattern with InMemorySessionStore builder.Services.AddAIAgent("session-test-agent", (_, name) => new FakeSessionAgent(name)) - .WithInMemorySessionStore(); + .WithInMemorySessionStore(withIsolation: false); this._app = builder.Build();