Skip to content

Commit 91931b1

Browse files
committed
Fix a unit-test that missed to react to the .slnx change
1 parent c534b0f commit 91931b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Testing/test/TestPathUtilitiesTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class TestPathUtilitiesTest
1616
public void GetSolutionRootDirectory_Throws_IfNotFound()
1717
{
1818
var exception = Assert.Throws<Exception>(() => TestPathUtilities.GetSolutionRootDirectory("NotTesting"));
19-
Assert.Equal($"Solution file NotTesting.slnf could not be found in {AppContext.BaseDirectory} or its parent directories.", exception.Message);
19+
Assert.Equal($"Solution file NotTesting.slnx could not be found in {AppContext.BaseDirectory} or its parent directories.", exception.Message);
2020
}
2121
#pragma warning restore 0618
2222
}

0 commit comments

Comments
 (0)