test:testpreprocessor.cpp; fixed broken unit test due to wrong charcter encoding

This commit is contained in:
Ettl Martin 2010-12-15 21:34:31 +01:00
parent 5ac9a7eaa7
commit a55d7df8a3
1 changed files with 1 additions and 1 deletions

View File

@ -2022,7 +2022,7 @@ private:
Settings settings;
Preprocessor preprocessor(&settings, this);
preprocessor.read(istr, "test.cpp", 0);
ASSERT_EQUALS("[test.cpp:1]: (error) The code contains characters that are unhandled. Neither Unicode nor extended ASCII are supported. (line=1, character code=c8)\n", errout.str());
ASSERT_EQUALS("[test.cpp:1]: (error) The code contains characters that are unhandled. Neither unicode nor extended ASCII are supported. (line=1, character code=c8)\n", errout.str());
}
void unicodeInComment()