Skip to content

Commit

Permalink
Refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
eminencegrs committed Dec 9, 2024
1 parent 4648420 commit fb2df6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class SolutionTests
{
[Theory]
[MemberData(nameof(TestData))]
public void GivenTree_WhenGetTreeLevelWithMinSum_ThenResultAsExpected(TreeNode root, int expected)
public void GivenTreeNode_WhenGetTreeLevelWithMinSum_ThenResultAsExpected(TreeNode root, int expected)
{
Solution.GetTreeLevelWithMinSum(root).ShouldBe(expected);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class SolutionTests
{
[Theory]
[MemberData(nameof(TestData))]
public void GivenTree_WhenSerialize_ThenStringAsExpected(TreeNode root, IList<string> expectedResult)
public void GivenTreeNode_WhenBinaryTreePaths_ThenResultAsExpected(TreeNode root, IList<string> expectedResult)
{
Solution.BinaryTreePaths(root).Should().BeEquivalentTo(expectedResult);
}
Expand Down

0 comments on commit fb2df6a

Please sign in to comment.