Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void ItCreatesHandlebarsPromptTemplate()
}

[Fact]
public void ItThrowsExceptionForUnknowPromptTemplateFormat()
public void ItThrowsExceptionForUnknownPromptTemplateFormat()
{
// Arrange
var templateString = "{{input}}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void ItCreatesMyPromptTemplates()
}

[Fact]
public void ItThrowsExceptionForUnknowPromptTemplateFormat()
public void ItThrowsExceptionForUnknownPromptTemplateFormat()
{
// Arrange
var templateString = "{{$input}}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void ItCreatesBasicPromptTemplate()
}

[Fact]
public void ItThrowsExceptionForUnknowPromptTemplateFormat()
public void ItThrowsExceptionForUnknownPromptTemplateFormat()
{
// Arrange
var templateString = "{{$input}}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ await this._sut.ProcessFunctionCallsAsync(
}

[Fact]
public async Task ItShouldSerializeFunctionResultOfUnknowTypeAsync()
public async Task ItShouldSerializeFunctionResultOfUnknownTypeAsync()
{
// Arrange
var function1 = KernelFunctionFactory.CreateFromMethod(() => { return new { a = 2, b = "test" }; }, "Function1");
Expand Down
Loading