Add promt fix tests
All checks were successful
SonarQube / Build and analyze (push) Successful in 2m54s

This commit is contained in:
Leonid Pershin
2025-10-21 12:07:56 +03:00
parent ef71568579
commit 1996fec14f
18 changed files with 398 additions and 333 deletions

View File

@@ -375,7 +375,7 @@ public class StatusCommandTests : UnitTestBase
var session = TestDataBuilder.ChatSessions.CreateBasicSession(12345, "private");
session.AddUserMessage("Test", "user");
chatServiceMock.Setup(x => x.GetSession(12345)).Returns(session);
chatServiceMock.Setup(x => x.GetSessionAsync(12345)).ReturnsAsync(session);
var statusCommand = new StatusCommand(
chatServiceMock.Object,