diff --git a/extensions/removerepeat.cpp b/extensions/removerepeat.cpp index 10fdd45..22aa47c 100644 --- a/extensions/removerepeat.cpp +++ b/extensions/removerepeat.cpp @@ -1,4 +1,4 @@ -#include "extension.h" +#include "extension.h" #include "defs.h" void RemoveRepeatedChars(std::wstring& sentence) @@ -62,10 +62,10 @@ TEST( assert(cyclicRepeats == L"abcdefg"); InfoForExtension tester{ "hook address", 0, nullptr }; - std::wstring empty = L"", one = L" ", normal = L"This is a normal sentence. ͂B"; + std::wstring empty = L"", one = L" ", normal = L"This is a normal sentence. はい"; ProcessSentence(empty, { &tester }); ProcessSentence(one, { &tester }); ProcessSentence(normal, { &tester }); - assert(empty == L"" && one == L" " && normal == L"This is a normal sentence. ͂B"); + assert(empty == L"" && one == L" " && normal == L"This is a normal sentence. はい"); } );