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:
parent
6b61b594cf
commit
ee8c79c13f
1 changed files with 3 additions and 3 deletions
|
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue