Unit tests update

This commit is contained in:
Markus Gans 2018-03-21 22:57:55 +01:00
parent 565efb6814
commit 3716e48045
1 changed files with 4 additions and 4 deletions

View File

@ -1004,15 +1004,15 @@ void FStringTest::formatTest()
+ "ooong string" ); + "ooong string" );
const FString null_fstring; const FString null_fstring;
str2.sprintf (null_fstring); str2.sprintf (null_fstring, 0);
CPPUNIT_ASSERT ( str2.isNull() ); CPPUNIT_ASSERT ( str2.isNull() );
const wchar_t* null_wstring = 0; const wchar_t* null_wstring = 0;
str2.sprintf (null_wstring); str2.sprintf (null_wstring, 0);
CPPUNIT_ASSERT ( str2.isNull() ); CPPUNIT_ASSERT ( str2.isNull() );
const char* null_string = 0; const char* null_string = 0;
str2.sprintf (null_string); str2.sprintf (null_string, 0);
CPPUNIT_ASSERT ( str2.isNull() ); CPPUNIT_ASSERT ( str2.isNull() );
std::setlocale (LC_NUMERIC, "C"); std::setlocale (LC_NUMERIC, "C");