]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/streams/iostreams.cpp
Build fix: forgotten part of the previous commit.
[wxWidgets.git] / tests / streams / iostreams.cpp
index 92a640e7907a9120b35a8289df7c2f9f7cbe65f6..88bd8a0f6fed022b75f0fccf67c8a0d49a53b180 100644 (file)
@@ -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() );