Formatting.

(cherry picked from commit a95f5172c9bc5138508a20623a86670c438549bd)
This commit is contained in:
Jeff Young 2025-05-12 21:59:37 +01:00
parent 427d4173b1
commit 1520883182

View File

@ -40,7 +40,7 @@ struct CADSTAR_IMPORT_FIXTURE
CADSTAR_IMPORT_FIXTURE() {}
PCB_IO_CADSTAR_ARCHIVE cstarPlugin;
PCB_IO_KICAD_SEXPR kicadPlugin;
PCB_IO_KICAD_SEXPR kicadPlugin;
};
@ -77,7 +77,8 @@ BOOST_AUTO_TEST_CASE( CadstarFootprintImport )
{
wxString footprintName = cstarFootprintNames[i];
BOOST_TEST_CONTEXT( wxString::Format( wxT( "Import '%s' from '%s'" ), footprintName,
BOOST_TEST_CONTEXT( wxString::Format( wxT( "Import '%s' from '%s'" ),
footprintName,
libName.first ) )
{
FOOTPRINT* eagleFp = cstarPlugin.FootprintLoad( cstarLibraryPath, footprintName,
@ -87,8 +88,8 @@ BOOST_AUTO_TEST_CASE( CadstarFootprintImport )
BOOST_CHECK_EQUAL( "REF**", eagleFp->GetReference() );
BOOST_CHECK_EQUAL( footprintName, eagleFp->GetValue() );
FOOTPRINT* kicadFp =
kicadPlugin.FootprintLoad( kicadLibraryPath, footprintName, true, nullptr );
FOOTPRINT* kicadFp = kicadPlugin.FootprintLoad( kicadLibraryPath, footprintName,
true, nullptr );
BOOST_CHECK( kicadFp );
KI_TEST::CheckFootprint( kicadFp, eagleFp );