Skip to content

Commit 0896029

Browse files
frmt
1 parent ec525ee commit 0896029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Advanced.Algorithms.Tests/DataStructures/Tree/TestHelpers/BinarySearchTreeTester.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static bool VerifyIsBinarySearchTree(IBSTNode<T> node, T lowerBound, T up
1717
return true;
1818
}
1919

20-
if (node.Value .CompareTo(upperBound)>= 0 || node.Value.CompareTo(lowerBound) <= 0)
20+
if (node.Value.CompareTo(upperBound)>= 0 || node.Value.CompareTo(lowerBound) <= 0)
2121
{
2222
return false;
2323
}

0 commit comments

Comments
 (0)