diff --git a/tests/irrString.cpp b/tests/irrString.cpp index ad35e89d..a5298ff6 100644 --- a/tests/irrString.cpp +++ b/tests/irrString.cpp @@ -20,9 +20,9 @@ static bool testSplit() core::stringw teststring(L"[b]this [/b] is a [color=0xff000000]test[/color]."); core::list parts1; teststring.split >(parts1, L"["); - core::list parts2; - teststring.split >(parts2, L"[", 1, false, true); - return (parts1.getSize()==4) && (parts2.getSize()==5); + core::array parts2; + teststring.split >(parts2, L"[", 1, false, true); + return (parts1.size()==4) && (parts2.size()==9); } static bool testFastAlloc() diff --git a/tests/tests-last-passed-at.txt b/tests/tests-last-passed-at.txt index 0a2f4d15..1f5c011e 100644 --- a/tests/tests-last-passed-at.txt +++ b/tests/tests-last-passed-at.txt @@ -1,4 +1,4 @@ Tests finished. 72 tests of 72 passed. Compiled as DEBUG -Test suite pass at GMT Thu Dec 12 14:36:27 2019 +Test suite pass at GMT Mon Dec 16 16:50:00 2019