From 7a95a0dde70481f62ad3d9c24597a3ef87ee09d8 Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 29 Jun 2023 22:55:01 +0200 Subject: Remove obsolete workaround for breakage in kicad-cli --- gerbonara/tests/test_kicad_footprints.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'gerbonara/tests/test_kicad_footprints.py') diff --git a/gerbonara/tests/test_kicad_footprints.py b/gerbonara/tests/test_kicad_footprints.py index e539ff8..07d64a7 100644 --- a/gerbonara/tests/test_kicad_footprints.py +++ b/gerbonara/tests/test_kicad_footprints.py @@ -190,12 +190,6 @@ def test_render(kicad_mod_file, tmpfile, print_on_error): # micrometers, but it's enough to really throw off our error calculation, so we just ignore text. fp = FootprintInstance(0, 0, sexp=Footprint.open_mod(kicad_mod_file), hide_text=True) - # kicad-cli doesn't render mask on nonplated pads. I think that's a bug, but let's work around this on our side for - # now. - for pad in fp.sexp.pads: - if pad.type == Atom.np_thru_hole: - pad.solder_mask_margin = 0 - stack = LayerStack(courtyard=True, fabrication=True, adhesive=True) stack.add_layer('mechanical drawings') stack.add_layer('mechanical comments') -- cgit