Fix unit tests for BString API change.

This commit is contained in:
Adrien Destugues 2017-01-11 21:54:31 +01:00
parent 3eac8208df
commit 7556ae845b

View File

@ -27,7 +27,7 @@ StringCharAccessTest::PerformTest(void)
//&operator[]
NextSubTest();
string[0] = 'a';
string.SetCharAt(0, 'a');
CPPUNIT_ASSERT(strcmp(string.String(), "a simple string") == 0);
//ByteAt(int32)