Skip to content

Commit 6ae0960

Browse files
committed
Test fixes to react to the slnx solution file change
1 parent 91931b1 commit 6ae0960

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/DefaultBuilder/test/Microsoft.AspNetCore.FunctionalTests/WebHostFunctionalTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ private static string GetTestSitesPath()
237237
var directoryInfo = new DirectoryInfo(applicationBasePath);
238238
do
239239
{
240-
var solutionFileInfo = new FileInfo(Path.Combine(directoryInfo.FullName, "DefaultBuilder.slnf"));
240+
var solutionFileInfo = new FileInfo(Path.Combine(directoryInfo.FullName, "DefaultBuilder.slnx"));
241241
if (solutionFileInfo.Exists)
242242
{
243243
return Path.GetFullPath(Path.Combine(directoryInfo.FullName, "testassets"));

Diff for: src/Servers/test/FunctionalTests/Helpers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static string GetApplicationPath()
1616
var directoryInfo = new DirectoryInfo(applicationBasePath);
1717
do
1818
{
19-
var solutionFileInfo = new FileInfo(Path.Combine(directoryInfo.FullName, "FunctionalTests.slnf"));
19+
var solutionFileInfo = new FileInfo(Path.Combine(directoryInfo.FullName, "FunctionalTests.slnx"));
2020
if (solutionFileInfo.Exists)
2121
{
2222
return Path.GetFullPath(Path.Combine(directoryInfo.FullName, "..", "..", "testassets", "ServerComparison.TestSites"));

0 commit comments

Comments
 (0)