fixup: Integraitaon tests

This commit is contained in:
Jacob Alber
2026-05-28 11:11:03 -04:00
Unverified
parent 8381e9cb95
commit 7a1475725d
@@ -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();