Fix the pcb bouncing box test adding the track clearance.
This commit is contained in:
parent
bd04e61b6f
commit
2ff623dcb9
|
@ -51,8 +51,9 @@ class TestBoardClass(unittest.TestCase):
|
|||
bounding_box = pcb.ComputeBoundingBox()
|
||||
height, width = ToMM(bounding_box.GetSize())
|
||||
|
||||
self.assertAlmostEqual(width, (30-10) + 0.5, 2)
|
||||
self.assertAlmostEqual(height, (20-10) + 0.5, 2)
|
||||
clearance = ToMM(track.GetClearance()*2)
|
||||
self.assertAlmostEqual(width, (30-10) + 0.5 + clearance, 2)
|
||||
self.assertAlmostEqual(height, (20-10) + 0.5 + clearance, 2)
|
||||
|
||||
def test_pcb_get_pad(self):
|
||||
pcb = BOARD()
|
||||
|
|
Loading…
Reference in New Issue