Skip to content

Commit

Permalink
test_build_generic.py -> Fix test that used assertEqual instead of as…
Browse files Browse the repository at this point in the history
…sertAlmostEqual
  • Loading branch information
jdegenstein authored Jan 19, 2024
1 parent 31e65f8 commit e037dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_build_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_add_to_part(self):
]
)
)
self.assertEqual(test.part.volume, 1125, 5)
self.assertAlmostEqual(test.part.volume, 1125, 5)
with BuildPart() as test:
add(Compound.make_compound([Edge.make_line((0, 0), (1, 1))]))
self.assertEqual(len(test.pending_edges), 1)
Expand Down

0 comments on commit e037dc3

Please sign in to comment.