Changeset 56222

Show
Ignore:
Timestamp:
10/10/08 14:12:51 (6 weeks ago)
Author:
VZ
Message:

fix C strings comparison in LoadSave() test in STL build

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wxWidgets/trunk/tests/xml/xmltest.cpp

    r56215 r56222  
    186186    doc.SetFileEncoding("UTF-8"); 
    187187    CPPUNIT_ASSERT( doc.Save(sos8) ); 
    188     CPPUNIT_ASSERT_EQUAL( utf8xmlText, sos8.GetString().ToUTF8() ); 
     188    CPPUNIT_ASSERT_EQUAL( wxString(utf8xmlText), 
     189                          wxString(sos8.GetString().ToUTF8()) ); 
    189190} 
    190191