Skip to content

Commit

Permalink
Re-enable test expectation
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters committed Oct 30, 2021
1 parent 9dc5cd9 commit ee6c81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/Plane_TEST.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class TestPlane(unittest.TestCase):
def test_plane_constructor(self):
plane = Planed(Vector3d(1, 0, 0), 0.1)
self.assertEqual(plane.normal(), Vector3d(1, 0, 0))
# self.assertAlmostEqual(plane.offset(), 0.1, 1e-6)
self.assertAlmostEqual(plane.offset(), 0.1, 1e-6)

planeCopy = Planed(plane)
self.assertEqual(plane.normal(), planeCopy.normal())
Expand Down

0 comments on commit ee6c81b

Please sign in to comment.