Skip to content

Commit 6065114

Browse files
committed
lint
1 parent a4a70e1 commit 6065114

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/compas/geometry/test_plane.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ def test_plane_from_three_points():
7676

7777
result = Plane.from_three_points(pt1, pt2, pt3)
7878
assert result == ([0, 0, 0], [0, 0, 1])
79-
79+
80+
8081
def test_plane_is_parallel():
8182
plane1 = Plane.worldXY()
8283
plane2 = Plane([1.0, 1.0, 1.0], [0.0, 0.0, 1.0])
8384
assert plane1.is_parallel(plane2)
84-
85+
8586
plane1 = Plane.worldXY()
8687
plane2 = Plane([1.0, 1.0, 1.0], [0.0, 0.0, -1.0])
8788
assert plane1.is_parallel(plane2)
88-

0 commit comments

Comments
 (0)