fix the test case which wrongly relied on wxString using UTF-8 representation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-04-03 17:03:16 +00:00
parent 27dd021da3
commit 727e8d842f

View File

@@ -207,7 +207,7 @@ void UnicodeTestCase::ConstructorsWithConversion()
wxString s2(wchar);
CPPUNIT_ASSERT_EQUAL( wchar, s2 );
CPPUNIT_ASSERT_EQUAL( utf8, s2 );
CPPUNIT_ASSERT_EQUAL( wxString::FromUTF8(utf8), s2 );
#else
CPPUNIT_ASSERT_EQUAL( utf8, s1 );
#endif