From 134dd34048cacb1c35c5948ee628af4bacb6b8f6 Mon Sep 17 00:00:00 2001 From: "lemiller@microsoft.com" Date: Fri, 24 Mar 2023 08:56:28 -0700 Subject: [PATCH] Rename DownloadToFileAsync to DownloadToFile in WebSkillTests Summary: This commit renames the method DownloadToFileAsync to DownloadToFile in the WebSkillTests class, to match the name of the method in the WebFileDownloadSkill class. This change improves the consistency and readability of the test code. No functional changes are made to the method or the test. --- .../SemanticKernel.IntegrationTests/WebSkill/WebSkillTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/SemanticKernel.IntegrationTests/WebSkill/WebSkillTests.cs b/dotnet/src/SemanticKernel.IntegrationTests/WebSkill/WebSkillTests.cs index b6ca374f54cc..371243feaaef 100644 --- a/dotnet/src/SemanticKernel.IntegrationTests/WebSkill/WebSkillTests.cs +++ b/dotnet/src/SemanticKernel.IntegrationTests/WebSkill/WebSkillTests.cs @@ -74,7 +74,7 @@ public async Task WebFileDownloadSkillFileTestAsync() contextVariables.Set(WebFileDownloadSkill.Parameters.FilePath, fileWhereToSaveWebPage); // Act - await kernel.RunAsync(contextVariables, download["DownloadToFileAsync"]); + await kernel.RunAsync(contextVariables, download["DownloadToFile"]); // Assert var fileInfo = new FileInfo(fileWhereToSaveWebPage);