fix test_002_board_class.py according to changes (fixes) in bounding box track calculations
This commit is contained in:
parent
ade3c2b129
commit
e624bbae8a
|
@ -57,9 +57,9 @@ class TestBoardClass(unittest.TestCase):
|
|||
bounding_box = pcb.ComputeBoundingBox()
|
||||
height, width = ToMM(bounding_box.GetSize())
|
||||
|
||||
clearance = ToMM(track.GetClearance()*2)
|
||||
self.assertAlmostEqual(width, (30-10) + 0.5 + clearance, 2)
|
||||
self.assertAlmostEqual(height, (20-10) + 0.5 + clearance, 2)
|
||||
margin = 0 # margin around bounding boxes (currently 0)
|
||||
self.assertAlmostEqual(width, (30-10) + 0.5 + margin, 2)
|
||||
self.assertAlmostEqual(height, (20-10) + 0.5 + margin, 2)
|
||||
|
||||
def test_pcb_get_pad(self):
|
||||
pcb = BOARD()
|
||||
|
|
Loading…
Reference in New Issue