Skip to content

Commit 89fec7c

Browse files
committed
Builder
1 parent 45ad497 commit 89fec7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/DiffBuilderTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Egil.AngleSharp.Diffing
77
public class DiffBuilderTest
88
{
99
[Fact(DisplayName = "Control and test html are set correctly")]
10-
public void Test1()
10+
public void Test001()
1111
{
1212
var control = "<p>control</p>";
1313
var test = "<p>test</p>";
@@ -21,7 +21,7 @@ public void Test1()
2121
}
2222

2323
[Fact(DisplayName = "Builder throws if null is passed to control and test")]
24-
public void Test2()
24+
public void Test002()
2525
{
2626
Should.Throw<ArgumentNullException>(() => DiffBuilder.Compare(null!)).ParamName.ShouldBe(nameof(DiffBuilder.Control));
2727
Should.Throw<ArgumentNullException>(() => DiffBuilder.Compare("").WithTest(null!)).ParamName.ShouldBe(nameof(DiffBuilder.Test));

0 commit comments

Comments
 (0)