Skip to content

Commit

Permalink
Update dotnet/src/SemanticKernel.UnitTests/Functions/KernelFunctionFr…
Browse files Browse the repository at this point in the history
…omMethodTests1.cs

Co-authored-by: Dmytro Struk <[email protected]>
  • Loading branch information
RogerBarreto and dmytrostruk authored Nov 21, 2024
1 parent c167a34 commit 2aa272d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ public async Task ItSupportsJsonElementArgumentsImplicitConversionAsync()
["d"] = JsonSerializer.Deserialize<JsonElement>((float)1.0), //Passed to parameter of type double
["f"] = JsonSerializer.Deserialize<JsonElement>((uint)1.0), //Passed to parameter of type float
["g"] = JsonSerializer.Deserialize<JsonElement>(JsonSerializer.Serialize(new Guid("35626209-b0ab-458c-bfc4-43e6c7bd13dc"))), //Passed to parameter of type string
["dof"] = JsonSerializer.Deserialize<JsonElement>(JsonSerializer.Serialize(DayOfWeek.Thursday)), //Passed to parameter of type string
["dof"] = JsonSerializer.Deserialize<JsonElement>(JsonSerializer.Serialize(DayOfWeek.Thursday)), //Passed to parameter of type int
["b"] = JsonSerializer.Deserialize<JsonElement>(JsonSerializer.Serialize("true")), //Passed to parameter of type bool
};

Expand Down

0 comments on commit 2aa272d

Please sign in to comment.