Skip to content

Commit

Permalink
Update test_build_sketch.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jdegenstein authored Sep 20, 2023
1 parent c6bc25c commit 35ae27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_build_sketch.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def test_regular_polygon(self):
def test_regular_polygon_minor_radius(self):
with BuildSketch() as test:
r = RegularPolygon(1, 3, False)
self.assertEqual(r.radius, 0.5)
self.assertAlmostEqual(r.radius, 0.5, 5)
self.assertEqual(r.side_count, 3)
self.assertEqual(r.rotation, 0)
self.assertEqual(r.align, (Align.CENTER, Align.CENTER))
Expand Down

0 comments on commit 35ae27c

Please sign in to comment.