fix issues
All checks were successful
SonarQube / Build and analyze (pull_request) Successful in 3m3s
Tests / Run Tests (pull_request) Successful in 2m29s

This commit is contained in:
Leonid Pershin
2025-10-22 05:42:11 +03:00
parent 594e4a1782
commit 9063ddb881
3 changed files with 3 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ public class ChatSessionCompressionTests
.Setup(x => x.CompressHistoryAsync(It.IsAny<List<ChatMessage>>(), It.IsAny<int>(), It.IsAny<CancellationToken>()))
.Returns(async (List<ChatMessage> messages, int target, CancellationToken ct) =>
{
await Task.Delay(50);
await Task.Delay(50, ct);
return delayedResult;
});
compressionServiceMock