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()
357
357
results . ShouldBeEmpty ( ) ;
358
358
}
359
359
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" ) ]
361
361
public void Test3 ( )
362
362
{
363
363
var sut = CreateHtmlDiffer (
@@ -369,7 +369,7 @@ public void Test3()
369
369
attrComparer : SameResultAttrComparer
370
370
) ;
371
371
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>" ) ) ;
373
373
374
374
results . ShouldBeEmpty ( ) ;
375
375
}
You can’t perform that action at this time.
0 commit comments