File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/AngleSharp.Diffing.Tests/Core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ public void Test2()
357357 results . ShouldBeEmpty ( ) ;
358358 }
359359
360- [ Fact ( DisplayName = "When comparer returns SkipChildren from an element comparison, the attributes are compared but child nodes not compared" ) ]
360+ [ Fact ( DisplayName = "When comparer returns SkipChildren from an element comparison, child nodes are not compared" ) ]
361361 public void Test3 ( )
362362 {
363363 var sut = CreateHtmlDiffer (
@@ -369,7 +369,7 @@ public void Test3()
369369 attrComparer : SameResultAttrComparer
370370 ) ;
371371
372- var results = sut . Compare ( ToNodeList ( @"<p id=""bar"" ><em>foo</em></p>" ) , ToNodeList ( @"<p id=""bar"" ><span>baz</span></p>" ) ) ;
372+ var results = sut . Compare ( ToNodeList ( @"<p><em>foo</em></p>" ) , ToNodeList ( @"<p><span>baz</span></p>" ) ) ;
373373
374374 results . ShouldBeEmpty ( ) ;
375375 }
You can’t perform that action at this time.
0 commit comments