Skip to content

Commit d6dee90

Browse files
committed
refactor: correct test names
1 parent 5badf2e commit d6dee90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AngleSharp.Diffing.Tests/Strategies/NodeStrategies/ForwardSearchingNodeMatcherTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public ForwardSearchingNodeMatcherTest(DiffingTestFixture fixture) : base(fixtur
1515
{
1616
}
1717

18-
[Theory(DisplayName = "The matcher matches two nodes with the same node name")]
18+
[Theory(DisplayName = "The matcher matches two nodes with of the same type")]
1919
[InlineData("textnode", "textnode")]
2020
[InlineData("<p></p>", "<p></p>")]
2121
[InlineData("<!--comment-->", "<!--comment-->")]
@@ -33,7 +33,7 @@ public void Test001(string controlHtml, string testHtml)
3333
actual.ShouldAllBe((c, idx) => c.Control == controls[idx] && c.Test == tests[idx]);
3434
}
3535

36-
[Theory(DisplayName = "The matcher matches two nodes with the same node name")]
36+
[Theory(DisplayName = "The matcher matches two nodes of the same type skipping excluded")]
3737
[InlineData("asdf<h1>Hello world</h1>asdf<h1>Hello world</h1>", "asdf<h1>Hello world</h1>asdf<h1>Hello world</h1>")]
3838
public void Test0011(string controlHtml, string testHtml)
3939
{

0 commit comments

Comments
 (0)