Skip to content

Commit 2c17e4e

Browse files
.Net: Fix the unknow typo (microsoft#11260)
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent 8d1ff2b commit 2c17e4e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dotnet/src/Extensions/Extensions.UnitTests/PromptTemplates/Handlebars/HandlebarsPromptTemplateFactoryTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void ItCreatesHandlebarsPromptTemplate()
2727
}
2828

2929
[Fact]
30-
public void ItThrowsExceptionForUnknowPromptTemplateFormat()
30+
public void ItThrowsExceptionForUnknownPromptTemplateFormat()
3131
{
3232
// Arrange
3333
var templateString = "{{input}}";

dotnet/src/SemanticKernel.UnitTests/PromptTemplate/AggregatorPromptTemplateFactoryTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void ItCreatesMyPromptTemplates()
3333
}
3434

3535
[Fact]
36-
public void ItThrowsExceptionForUnknowPromptTemplateFormat()
36+
public void ItThrowsExceptionForUnknownPromptTemplateFormat()
3737
{
3838
// Arrange
3939
var templateString = "{{$input}}";

dotnet/src/SemanticKernel.UnitTests/PromptTemplate/KernelPromptTemplateFactoryTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void ItCreatesBasicPromptTemplate()
3838
}
3939

4040
[Fact]
41-
public void ItThrowsExceptionForUnknowPromptTemplateFormat()
41+
public void ItThrowsExceptionForUnknownPromptTemplateFormat()
4242
{
4343
// Arrange
4444
var templateString = "{{$input}}";

dotnet/src/SemanticKernel.UnitTests/Utilities/AIConnectors/FunctionCallsProcessorTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ await this._sut.ProcessFunctionCallsAsync(
768768
}
769769

770770
[Fact]
771-
public async Task ItShouldSerializeFunctionResultOfUnknowTypeAsync()
771+
public async Task ItShouldSerializeFunctionResultOfUnknownTypeAsync()
772772
{
773773
// Arrange
774774
var function1 = KernelFunctionFactory.CreateFromMethod(() => { return new { a = 2, b = "test" }; }, "Function1");

0 commit comments

Comments
 (0)