Commit 2ff623dc authored by Miguel Angel Ajo's avatar Miguel Angel Ajo
Browse files

Fix the pcb bouncing box test adding the track clearance.

parent bd04e61b
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -51,8 +51,9 @@ class TestBoardClass(unittest.TestCase):
        bounding_box = pcb.ComputeBoundingBox()
        bounding_box = pcb.ComputeBoundingBox()
        height, width = ToMM(bounding_box.GetSize())
        height, width = ToMM(bounding_box.GetSize())


        self.assertAlmostEqual(width, (30-10) + 0.5, 2)
        clearance = ToMM(track.GetClearance()*2)
        self.assertAlmostEqual(height,  (20-10) + 0.5, 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):
    def test_pcb_get_pad(self):
        pcb = BOARD()
        pcb = BOARD()