Skip to content

Commit 922d6dd

Browse files
committed
Fix test for modified behavior of seealso tags
1 parent 761b862 commit 922d6dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/DendroDocs.Tool.Tests/DocumentationTagContentParsingTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ class Test
386386
}
387387

388388
[TestMethod]
389-
public void TagWithSeeAlso_Should_IgnoreSeeAlso()
389+
public void SummaryWithSeeAlso_Should_DisplaySeeAlso()
390390
{
391391
// Assign
392392
var source =
@@ -404,7 +404,7 @@ public void Method() {}
404404
var types = TestHelper.VisitSyntaxTree(source);
405405

406406
// Assert
407-
types[0].Methods[0].DocumentationComments!.Summary.Should().BeEmpty();
407+
types[0].Methods[0].DocumentationComments!.Summary.Should().Be("See also.");
408408
}
409409

410410
[TestMethod]

0 commit comments

Comments
 (0)