Skip to content

Commit

Permalink
Uncomment checks in test_radius_assign
Browse files Browse the repository at this point in the history
  • Loading branch information
leavauchier committed Jun 4, 2024
1 parent 46c7229 commit b6b19db
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions test/test_radius_assign.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ def func_test(pt):
func_test, distance_radius
)
nb_pts_radius_3d = run_filter(arrays_las, distance_radius, True)
# fix in other PR
#assert nb_pts_radius_3d == nb_points_take_3d
assert nb_pts_radius_3d == nb_points_take_3d


def test_radius_assign_2d():
Expand All @@ -142,8 +141,7 @@ def func_test(pt):
func_test, distance_radius
)
nb_pts_radius_2d = run_filter(arrays_las, distance_radius, False)
# fix in other PR
#assert nb_pts_radius_2d == nb_points_take_2d
assert nb_pts_radius_2d == nb_points_take_2d


def test_radius_assign_2d_cylinder():
Expand All @@ -162,5 +160,4 @@ def func_test(pt):
func_test, distance_radius
)
nb_pts_radius_2d_cylinder = run_filter(arrays_las, distance_radius, False, distance_cylinder)
#fix in other PR
#assert nb_pts_radius_2d_cylinder == nb_points_take_2d
assert nb_pts_radius_2d_cylinder == nb_points_take_2d

0 comments on commit b6b19db

Please sign in to comment.