Remove wxT() that gets fed to ostream in boost and causes compile error

This commit is contained in:
Marek Roszko 2024-04-12 23:06:23 -04:00
parent 96cdfc7fa7
commit af2c52cf0a
4 changed files with 5 additions and 5 deletions

View File

@ -44,9 +44,9 @@ BOOST_AUTO_TEST_CASE( TestSubsheetNetclass )
wxString name = label->GetText();
if( name == wxT( "B" ) || name == wxT( "D" ) )
BOOST_CHECK_EQUAL( label->GetEffectiveNetClass( &path )->GetName(), wxT( "net_02" ) );
BOOST_CHECK_EQUAL( label->GetEffectiveNetClass( &path )->GetName(), "net_02" );
else
BOOST_CHECK_EQUAL( label->GetEffectiveNetClass( &path )->GetName(), wxT( "net_01" ) );
BOOST_CHECK_EQUAL( label->GetEffectiveNetClass( &path )->GetName(), "net_01" );
}
}

View File

@ -92,7 +92,7 @@ BOOST_AUTO_TEST_CASE( AltiumPcbLibImport )
false, nullptr );
BOOST_CHECK( altiumFp );
BOOST_CHECK_EQUAL( wxT( "REF**" ), altiumFp->GetReference() );
BOOST_CHECK_EQUAL( "REF**", altiumFp->GetReference() );
BOOST_CHECK_EQUAL( footprintName, altiumFp->GetValue() );
FOOTPRINT* kicadFp = kicadPlugin.FootprintLoad( kicadLibraryPath, footprintName,

View File

@ -84,7 +84,7 @@ BOOST_AUTO_TEST_CASE( CadstarFootprintImport )
false, nullptr );
BOOST_CHECK( eagleFp );
BOOST_CHECK_EQUAL( wxT( "REF**" ), eagleFp->GetReference() );
BOOST_CHECK_EQUAL( "REF**", eagleFp->GetReference() );
BOOST_CHECK_EQUAL( footprintName, eagleFp->GetValue() );
FOOTPRINT* kicadFp =

View File

@ -90,7 +90,7 @@ BOOST_AUTO_TEST_CASE( EagleLbrLibImport )
false, nullptr );
BOOST_CHECK( eagleFp );
BOOST_CHECK_EQUAL( wxT( "REF**" ), eagleFp->GetReference() );
BOOST_CHECK_EQUAL( "REF**", eagleFp->GetReference() );
BOOST_CHECK_EQUAL( footprintName, eagleFp->GetValue() );
FOOTPRINT* kicadFp = kicadPlugin.FootprintLoad( kicadLibraryPath, footprintName,