X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/02e22828ebafb109d321370d75e2df95596b7a9a..8f99e9c3148205809ce076bcf69668926f945cd8:/tests/streams/iostreams.cpp diff --git a/tests/streams/iostreams.cpp b/tests/streams/iostreams.cpp index 92a640e790..88bd8a0f6f 100644 --- a/tests/streams/iostreams.cpp +++ b/tests/streams/iostreams.cpp @@ -58,7 +58,7 @@ private: void DoTest(Stream& s) { s.PutC('x'); - WX_ASSERT_SIZET_EQUAL( 1, s.LastWrite() ); + CPPUNIT_ASSERT_EQUAL( 1, s.LastWrite() ); s.SeekI(0); CPPUNIT_ASSERT_EQUAL( int('x'), s.GetC() );