Skip to content

Commit ba65183

Browse files
committed
Unit test clarity fixes
1 parent 6bd0ddf commit ba65183

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CSharpRepl.Tests/SymbolExplorerTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ public async Task GetSymbolAtIndex_ClassInSourceLinkedAssembly_ReturnsSourceLink
4343
}
4444

4545
[Fact]
46-
public async Task GetGenericSymbolAtIndex_ClassInSourceLinkedAssembly_ReturnsSourceLinkUrl()
46+
public async Task GetSymbolAtIndex_GenericTypeInSourceLinkedAssembly_ReturnsSourceLinkUrl()
4747
{
48-
// should return a string like https://www.github.com/dotnet/runtime/blob/208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/System.Console/src/System/Console.cs
48+
// should return a string like https://www.github.com/dotnet/runtime/blob/1381d5ebd2ab1f292848d5b19b80cf71ac332508/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs
4949
var symbol = await services.GetSymbolAtIndexAsync(@"List<string>", "Li".Length);
5050

5151
Assert.StartsWith("https://www.github.com/dotnet/runtime/", symbol.Url);

0 commit comments

Comments
 (0)