Skip to content

Commit ffb861c

Browse files
committed
remove Assert.Multiple
1 parent ac318a9 commit ffb861c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

dotnet/test/common/ChildrenFindingTest.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,8 @@ public void FindElementsByXPath()
7474

7575
ReadOnlyCollection<IWebElement> children = element.FindElements(By.XPath("select/option"));
7676
Assert.That(children, Has.Exactly(8).Items);
77-
Assert.Multiple(() =>
78-
{
79-
Assert.That(children[0].Text, Is.EqualTo("One"));
80-
Assert.That(children[1].Text, Is.EqualTo("Two"));
81-
});
77+
Assert.That(children[0].Text, Is.EqualTo("One"));
78+
Assert.That(children[1].Text, Is.EqualTo("Two"));
8279
}
8380

8481
[Test]

0 commit comments

Comments
 (0)