Skip to content

Commit 7b713b6

Browse files
baehrjogonzalocasas
authored andcommitted
little lint check again
1 parent 22a355d commit 7b713b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/compas/geometry/predicates/test_predicates_2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ def test_is_polygon_in_polygon_xy():
3232
polygon_inside = Polygon([(5, 5, 0), (10, 5, 0), (10, 10 ,0), (5, 10, 0)])
3333
assert is_polygon_in_polygon_xy(polygon_contour, polygon_inside) is True
3434

35-
polygon_outside = Polygon([(15, 5, 0), (20, 5, 0), (20, 10 ,0), (15, 10, 0)])
35+
polygon_outside = Polygon([(15, 5, 0), (20, 5, 0), (20, 10, 0), (15, 10, 0)])
3636
assert is_polygon_in_polygon_xy(polygon_contour, polygon_outside) is False
3737

38-
polygon_intersecting = Polygon([(10, 10, 0), (10, 5, 0), (15, 5, 0), (15, 10 ,0)])
38+
polygon_intersecting = Polygon([(10, 10, 0), (10, 5, 0), (15, 5, 0), (15, 10, 0)])
3939
assert is_polygon_in_polygon_xy(polygon_contour, polygon_intersecting) is False
4040

4141
# shifting the vertices list of the same polygon shouldn't affect the containment check output anymore

0 commit comments

Comments
 (0)