Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akevalion committed Oct 23, 2023
1 parent 79e12b7 commit 8e7d1f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RTree-Tests/RTreeTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,10 @@ RTreeTest >> testThreeElementsContains [
result := tree shapesAtRectangle: (0@0 corner: 10@10).
self assert: result first equals: b1.

result := tree shapesAtRectangle: (0@0 corner: 30@30).
result := tree shapesAtRectangle: (0@0 corner: 40@40).
self assert: result size equals: 2.

result := tree shapesAtRectangle: (-20@ -20 corner: 30@30).
result := tree shapesAtRectangle: (-20@ -20 corner: 40@40).
self assert: result size equals: 3.
self assert: result asArray equals: { b2. b1. b3 }.
]
Expand Down

0 comments on commit 8e7d1f2

Please sign in to comment.