Skip to content

Commit 677067f

Browse files
author
sailok.chinta
committed
feat: fix test case
1 parent 3f1fd6f commit 677067f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/datastructures/trees/QuadTreeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void testQueryInQuadTree() {
4747
quadTree.insert(new Point(100, 100));
4848

4949
List<Point> points = quadTree.query(new BoundingBox(new Point(0, 0), 100));
50-
Assertions.assertEquals(4, points.size());
50+
Assertions.assertEquals(8, points.size());
5151

5252
points = quadTree.query(new BoundingBox(new Point(5, 5), 5));
5353
Assertions.assertEquals(1, points.size());

0 commit comments

Comments
 (0)