Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 committed Sep 18, 2024
1 parent 2fa12a0 commit 8162f35
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ public void TestMatchNodesWithPattern()
morpher.MatchNodesWithPattern(oneNode, optionalPattern2),
Is.EquivalentTo(new List<IList<ShapeNode>> { oneNode, oneNode })
);
Assert.That(morpher.MatchNodesWithPattern(twoNodes, optionalPattern2),
Assert.That(
morpher.MatchNodesWithPattern(twoNodes, optionalPattern2),
Is.EquivalentTo(new List<IList<ShapeNode>> { twoNodes }));
Assert.That(morpher.MatchNodesWithPattern(threeNodes, optionalPattern2), Is.Empty);

Expand Down

0 comments on commit 8162f35

Please sign in to comment.