Remove wxT() that gets fed to ostream in boost and causes compile error
This commit is contained in:
parent
96cdfc7fa7
commit
af2c52cf0a
|
@ -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" );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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 =
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue