From 5bede7bddbf2dfef4b6057eb574d1d7fedf2ff52 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Thu, 2 May 2024 12:16:05 -0700 Subject: [PATCH] Update QA to reflect current correct output Previously, (v7), the NPTH had a too-large clearance. This affected the fill so that there was no island. In v8, at some point, NPTH had zero clearance, which was definitely incorrect but also did not create an island. Correcting this to have the appropriate clearance between copper and NPTH results in one almost island that has a neck and is appropriately caught by the copper connection check. --- qa/tests/pcbnew/drc/test_drc_copper_conn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tests/pcbnew/drc/test_drc_copper_conn.cpp b/qa/tests/pcbnew/drc/test_drc_copper_conn.cpp index 1e76bccdc3..de232c8ca8 100644 --- a/qa/tests/pcbnew/drc/test_drc_copper_conn.cpp +++ b/qa/tests/pcbnew/drc/test_drc_copper_conn.cpp @@ -53,7 +53,7 @@ BOOST_FIXTURE_TEST_CASE( DRCCopperConn, DRC_REGRESSION_TEST_FIXTURE ) { "issue9870", 13 }, { "connection_width_rules", 3 }, { "issue12831", 0 }, - { "issue14130", 0 } + { "issue14130", 1 } }; for( const std::pair& test : tests )