Fix issue
This commit is contained in:
@@ -131,7 +131,7 @@ public class OllamaClientAdapterTests
|
|||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
Assert.NotNull(result);
|
Assert.NotNull(result);
|
||||||
Assert.IsAssignableFrom<IAsyncEnumerable<ChatResponseStream?>>(result);
|
Assert.IsType<IAsyncEnumerable<ChatResponseStream?>>(result, exactMatch: false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
@@ -146,7 +146,7 @@ public class OllamaClientAdapterTests
|
|||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
Assert.NotNull(result);
|
Assert.NotNull(result);
|
||||||
Assert.IsAssignableFrom<Task<IEnumerable<Model>>>(result);
|
Assert.IsType<Task<IEnumerable<Model>>>(result, exactMatch: false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
|||||||
Reference in New Issue
Block a user