From 51ac8d53f430b031c66b4a8cec227759f639d86f Mon Sep 17 00:00:00 2001 From: Pavel Krymets Date: Tue, 29 Aug 2017 09:35:02 -0700 Subject: [PATCH] Fix site name --- .../TemplateFunctionalTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNetCore.AzureAppServices.FunctionalTests/TemplateFunctionalTests.cs b/test/Microsoft.AspNetCore.AzureAppServices.FunctionalTests/TemplateFunctionalTests.cs index 3aff1126e0..fd45e143ff 100644 --- a/test/Microsoft.AspNetCore.AzureAppServices.FunctionalTests/TemplateFunctionalTests.cs +++ b/test/Microsoft.AspNetCore.AzureAppServices.FunctionalTests/TemplateFunctionalTests.cs @@ -40,9 +40,9 @@ namespace Microsoft.AspNetCore.AzureAppServices.FunctionalTests [InlineData("latest", "web", "Hello World!")] [InlineData("latest", "razor", "Learn how to build ASP.NET apps that can run anywhere.")] [InlineData("latest", "mvc", "Learn how to build ASP.NET apps that can run anywhere.")] - public async Task DotnetNewWebRunsWebAppOnLatestRuntime(string dotnetVersion, string template, string expected) + public async Task TemplateRuns(string dotnetVersion, string template, string expected) { - var testId = nameof(DotnetNewWebRunsWebAppOnLatestRuntime) + template + dotnetVersion.Replace('.', '_'); + var testId = nameof(TemplateRuns) + template + dotnetVersion.Replace(".", string.Empty); using (var logger = GetLogger(testId)) {