X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8b9e1f439b5210075d262c3b3c730315326facf7..bca6a3a5553884d5e210706b144dc3855798934d:/tests/fontmap/fontmaptest.cpp?ds=sidebyside diff --git a/tests/fontmap/fontmaptest.cpp b/tests/fontmap/fontmaptest.cpp index 7961eda949..ea36961c17 100644 --- a/tests/fontmap/fontmaptest.cpp +++ b/tests/fontmap/fontmaptest.cpp @@ -5,6 +5,7 @@ // Created: 14.02.04 // RCS-ID: $Id$ // Copyright: (c) 2003 TT-Solutions +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ---------------------------------------------------------------------------- @@ -110,7 +111,7 @@ void FontMapperTestCase::NamesAndDesc() for ( size_t n = 0; n < WXSIZEOF(charsets); n++ ) { wxFontEncoding enc = wxFontMapperBase::Get()->CharsetToEncoding(charsets[n]); - CPPUNIT_ASSERT( wxFontMapperBase::Get()->GetEncodingName(enc) == names[n] ); + CPPUNIT_ASSERT( wxFontMapperBase::Get()->GetEncodingName(enc).CmpNoCase(names[n]) == 0 ); CPPUNIT_ASSERT( wxFontMapperBase::Get()->GetEncodingDescription(enc) == descriptions[n] ); } }