From 7d07e6d16ac89e4cb4b88c5f063c9f6d05e74a54 Mon Sep 17 00:00:00 2001 From: pthummar Date: Wed, 3 May 2023 10:48:58 -0500 Subject: [PATCH] updating test. --- test/Azure.Functions.Cli.Tests/PythonHelperTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Azure.Functions.Cli.Tests/PythonHelperTests.cs b/test/Azure.Functions.Cli.Tests/PythonHelperTests.cs index a239992e9..45817c930 100644 --- a/test/Azure.Functions.Cli.Tests/PythonHelperTests.cs +++ b/test/Azure.Functions.Cli.Tests/PythonHelperTests.cs @@ -43,7 +43,7 @@ public async void WorkerInfoRuntimeShouldBePython() [Theory] [InlineData("DOCKER|mcr.microsoft.com/azure-functions/python", 3, 9, true)] - [InlineData("", 3, 7, false)] + [InlineData("", 3, 7, true)] [InlineData("PYTHON|3.7", 3, 6, false)] [InlineData("python|3.7", 3, 7, true)] [InlineData("Python|3.8", 3, 8, true)]