X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/02e22828ebafb109d321370d75e2df95596b7a9a..830c06655b226cfe9fe55d57da8c948d1744107c:/tests/streams/iostreams.cpp?ds=inline diff --git a/tests/streams/iostreams.cpp b/tests/streams/iostreams.cpp index 92a640e790..07fdb16506 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() ); @@ -72,7 +72,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( IOStreamsTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( IOStreamsTestCase, "IOStreamsTestCase" ); #endif // wxUSE_STREAMS