Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgenii Khoroshev committed Nov 4, 2023
1 parent 6acef7b commit ff3cf0f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public async Task Retrieval_Ok()
m => m.GetRelevantDocumentsAsync(
It.Is<string>(x => x == "question?"),
It.IsAny<string>(),
It.IsAny<Callbacks?>(),
It.IsAny<ICallbacks?>(),
It.IsAny<bool>(),
It.IsAny<List<string>>(),
It.IsAny<Dictionary<string, object>>()),
Expand All @@ -52,11 +52,11 @@ private Mock<BaseRetriever> CreateRetrieverMock()
.GetRelevantDocumentsAsync(
It.IsAny<string>(),
It.IsAny<string>(),
It.IsAny<Callbacks>(),
It.IsAny<ICallbacks>(),
It.IsAny<bool>(),
It.IsAny<List<string>>(),
It.IsAny<Dictionary<string, object>>()))
.Returns<string, string, Callbacks, bool, List<string>, Dictionary<string, object>>((query, _, _, _, _, _) =>
.Returns<string, string, ICallbacks, bool, List<string>, Dictionary<string, object>>((query, _, _, _, _, _) =>
{
var docs = new List<Document>
{
Expand Down

0 comments on commit ff3cf0f

Please sign in to comment.