Fix test case.

Silk tests were processing MODULE_Ts when they shouldn't have been.
This commit is contained in:
Jeff Young 2020-10-25 23:18:52 +00:00
parent dfa1024c7e
commit 45113f983b
1 changed files with 2 additions and 2 deletions

View File

@ -166,8 +166,8 @@ bool DRC_TEST_PROVIDER_SILK_TO_MASK::Run()
return true;
};
int numMask = forEachGeometryItem( {}, LSET( 2, F_Mask, B_Mask ), addMaskToTree );
int numSilk = forEachGeometryItem( {}, LSET( 2, F_SilkS, B_SilkS ), addSilkToTree );
int numMask = forEachGeometryItem( s_allBasicItems, LSET( 2, F_Mask, B_Mask ), addMaskToTree );
int numSilk = forEachGeometryItem( s_allBasicItems, LSET( 2, F_SilkS, B_SilkS ), addSilkToTree );
reportAux( _("Testing %d mask apertures against %d silkscreen features."), numMask, numSilk );