From a55d7df8a371fc84b13d113e8d5003a29a2c993c Mon Sep 17 00:00:00 2001 From: Ettl Martin Date: Wed, 15 Dec 2010 21:34:31 +0100 Subject: [PATCH] test:testpreprocessor.cpp; fixed broken unit test due to wrong charcter encoding --- test/testpreprocessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testpreprocessor.cpp b/test/testpreprocessor.cpp index 88a9e5360..13fd28e29 100644 --- a/test/testpreprocessor.cpp +++ b/test/testpreprocessor.cpp @@ -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()