Skip to content

Commit 81bc0b1

Browse files
committed
Fix test asset casing in Hosting funcational tests
1 parent d9a953d commit 81bc0b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Hosting/test/FunctionalTests/ShutdownTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ private async Task ExecuteShutdownTest(string testName, string shutdownMechanic)
4747
{
4848
var logger = loggerFactory.CreateLogger(testName);
4949

50-
var applicationPath = Path.Combine(TestPathUtilities.GetSolutionRootDirectory("Hosting"), "test", "TestAssets",
50+
var applicationPath = Path.Combine(TestPathUtilities.GetSolutionRootDirectory("Hosting"), "test", "testassets",
5151
"Microsoft.AspNetCore.Hosting.TestSites");
5252

5353
var deploymentParameters = new DeploymentParameters(

src/Hosting/test/FunctionalTests/WebHostBuilderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private async Task InjectedStartup_DefaultApplicationNameIsEntryAssembly(Runtime
3333
{
3434
var logger = loggerFactory.CreateLogger(nameof(InjectedStartup_DefaultApplicationNameIsEntryAssembly));
3535

36-
var applicationPath = Path.Combine(TestPathUtilities.GetSolutionRootDirectory("Hosting"), "test", "TestAssets", "IStartupInjectionAssemblyName");
36+
var applicationPath = Path.Combine(TestPathUtilities.GetSolutionRootDirectory("Hosting"), "test", "testassets", "IStartupInjectionAssemblyName");
3737

3838
var deploymentParameters = new DeploymentParameters(
3939
applicationPath,

0 commit comments

Comments
 (0)