Skip to content

Commit 7100ffc

Browse files
edburnsCopilot
andcommitted
Fix .NET session lifecycle replay mismatch in PR 1728
Restore the second lifecycle prompt to 'Say world' to match the existing session_lifecycle snapshot and avoid replay cache misses in CI. Related to issue #1682 but does not fix #1682. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent fed8ab8 commit 7100ffc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dotnet/test/E2E/SessionLifecycleE2ETests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public async Task Should_List_Created_Sessions_After_Sending_A_Message()
2525

2626
// Sessions must have activity to be persisted to disk
2727
await session1.SendAndWaitAsync(new MessageOptions { Prompt = "Say hello" });
28-
await session2.SendAndWaitAsync(new MessageOptions { Prompt = "Say hi" });
28+
await session2.SendAndWaitAsync(new MessageOptions { Prompt = "Say world" });
2929

3030
IList<SessionMetadata>? sessions = null;
3131
await TestHelper.WaitForConditionAsync(

0 commit comments

Comments
 (0)