]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/scopeguard/scopeguardtest.cpp
added support for bitmaps in wxButton to wxOSX/Cocoa
[wxWidgets.git] / tests / scopeguard / scopeguardtest.cpp
index 83a73684dc75079a7f8ec06a4ac963893f3151ea..7b74824c37fdc61cf250397ff110cfc279e2ccd0 100644 (file)
@@ -233,9 +233,9 @@ void ScopeGuardTestCase::BlockExitSetVar()
     {
         wxON_BLOCK_EXIT_SET(s, "bye");
 
-        WX_ASSERT_STR_EQUAL( "hi", s );
+        CPPUNIT_ASSERT_EQUAL( "hi", s );
     }
-    WX_ASSERT_STR_EQUAL( "bye", s );
+    CPPUNIT_ASSERT_EQUAL( "bye", s );
 
     ScopeGuardTestCase *p = this;
     {