This commit is contained in:
Бранимир Караџић
2024-10-25 16:58:19 -07:00
committed by Branimir Karadžić
parent d800537433
commit cc5a21ef3d
6 changed files with 37 additions and 62 deletions

View File

@@ -101,7 +101,7 @@ static bool test(const char* _expected, const char* _format, ...)
{
va_list argList;
va_start(argList, _format);
const bool result = test<true>(_expected, _format, argList);
const bool result = test<false>(_expected, _format, argList);
va_end(argList);
return result;