PR comments/fixes

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-05 12:42:33 -07:00
parent 9bab676109
commit 9a82005cb8
4 changed files with 20 additions and 12 deletions
+1 -1
View File
@@ -703,7 +703,7 @@ namespace UnitTest
AZ_TEST_ASSERT(0 == azwcsicmp(wstrBuffer, L"BlaBla 5"));
// char buffer to wchar_t buffer
memset(wstrBuffer, 0, AZ_ARRAY_SIZE(wstrBuffer));
memset(wstrBuffer, L' ', AZ_ARRAY_SIZE(wstrBuffer)); // to check that the null terminator is properly placed
to_wstring(wstrBuffer, 9, strBuffer);
AZ_TEST_ASSERT(0 == azwcsicmp(wstrBuffer, L"BLABLA 5"));