Skip to content

Commit

Permalink
GmMultiPolyIntersector for python - fix CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mkennard-aquaveo committed Jan 4, 2024
1 parent 81af01d commit 11a970a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def test_traverse_line_segment_1_out_out(self):
"""A test."""
pts = [[0, 0, 0], [10, 0, 0], [10, 10, 0], [0, 10, 0]]
polys = [[0, 1, 2, 3]]
expected_ids = [1, -1]
expected_t_vals = [0.0833333, 0.916667]
expected_points = [[0.0, 5.0, 0.0], [10.0, 5.0, 0.0]]
expected_ids = (1, -1)
expected_t_vals = (0.0833333, 0.916667)
expected_points = ((0.0, 5.0, 0.0), (10.0, 5.0, 0.0))
self._run_test(-1, 5, 11, 5, pts, polys, expected_ids, expected_t_vals, expected_points)


Expand Down

0 comments on commit 11a970a

Please sign in to comment.