renamed a strangely named variable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49101 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-10-09 00:09:44 +00:00
parent 6b61b594cf
commit ee8c79c13f

View File

@@ -125,10 +125,10 @@ void Base64TestCase::EncodeDecodeEmpty()
CPPUNIT_ASSERT_EQUAL('\0', shouldBeEmpty[0]);
wxMemoryBuffer bufmt;
wxString resultmt = wxBase64Encode(bufmt);
CPPUNIT_ASSERT(resultmt.empty());
wxString resultEmpty = wxBase64Encode(bufmt);
CPPUNIT_ASSERT(resultEmpty.empty());
bufmt = wxBase64Decode(resultmt);
bufmt = wxBase64Decode(resultEmpty);
WX_ASSERT_SIZET_EQUAL(0, bufmt.GetDataLen());
}