From 824a942f5508ab3e95b4ae97c7a00ad1a0e5a3eb Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Fri, 26 Feb 2021 13:55:36 -0800 Subject: [PATCH] Update Python test QA We don't need to explicitly calculate the bounding box anymore as it is lazily calculated when needed --- qa/testcases/test_002_board_class.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/qa/testcases/test_002_board_class.py b/qa/testcases/test_002_board_class.py index bde8f5416c..ebf8f31ea7 100644 --- a/qa/testcases/test_002_board_class.py +++ b/qa/testcases/test_002_board_class.py @@ -69,10 +69,6 @@ class TestBoardClass(unittest.TestCase): pad.SetSize(wxSizeMM(2.0, 3.0)) pad.SetPosition(wxPointMM(0,0)) - #Update the footprint bounding box, because - #the new pad must be inside the bounding box to be located - module.CalculateBoundingBox() - # easy case p1 = pcb.GetPad(wxPointMM(0,0))