Skip to content

Commit 2f3c0c2

Browse files
committed
bug
1 parent 7c52617 commit 2f3c0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/compas/geometry/test_pointcloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ def test_pointcloud_from_box():
6464
box = Box.from_width_height_depth(x_size, z_size, y_size)
6565
pointcloud = Pointcloud.from_box(box, 100)
6666
assert len(pointcloud.points) == 100
67-
assert all((-x_size / 2 < x < x_size / 2) and (-y_size / 2 < y < y_size / 2) and (-z_size / 2 < z < z_size) for x, y, z in pointcloud.points)
67+
assert all((-x_size / 2 < x < x_size / 2) and (-y_size / 2 < y < y_size / 2) and (-z_size / 2 < z < z_size / 2) for x, y, z in pointcloud.points)

0 commit comments

Comments
 (0)