Skip to content

Commit

Permalink
Fix test_scene_visible_items_bounding_rect
Browse files Browse the repository at this point in the history
  • Loading branch information
n-elie committed May 16, 2024
1 parent ae4f028 commit c5def5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ def test_scene_visible_items_bounding_rect(scene):
node.show()
new_bounding_rect = scene.visibleItemsBoundingRect()
if not new_bounding_rect.isNull():
assert bounding_rect.contains(new_bounding_rect)
assert new_bounding_rect.contains(bounding_rect)
bounding_rect = new_bounding_rect


Expand Down

0 comments on commit c5def5b

Please sign in to comment.