From 3853f93b34c4f858e39ad756957835cec9f2334a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 27 Dec 2010 08:22:21 +0100 Subject: [PATCH] TestClass: addon for 12f28507, fix a few more error messages. --- test/testclass.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/testclass.cpp b/test/testclass.cpp index 4ea97b2de..4d429de24 100644 --- a/test/testclass.cpp +++ b/test/testclass.cpp @@ -3562,7 +3562,7 @@ private: " std::pair m_pair;\n" "}"); ASSERT_EQUALS("[test.cpp:4]: (information) Technically the member function 'A::GetVec' can be const.\n" - "[test.cpp:5]: (information)Technically the member function 'A::GetPair' can be const.\n", errout.str()); + "[test.cpp:5]: (information) Technically the member function 'A::GetPair' can be const.\n", errout.str()); checkConst("class A {\n" "public:\n" @@ -3735,7 +3735,7 @@ private: "private:\n" " std::pair< std::vector,std::vector > m_pair;\n" "}"); - ASSERT_EQUALS("[test.cpp:4]: (information) The function 'A::GetPair' can be const\n", errout.str()); + ASSERT_EQUALS("[test.cpp:4]: (information) Technically the member function 'A::GetPair' can be const.\n", errout.str()); checkConst("class A {\n" "public:\n" @@ -4189,7 +4189,7 @@ private: "std::string m_strVal;\n" "};\n" ); - ASSERT_EQUALS("[test.cpp:4]: (information) The function 'A::strGetString1' can be const\n", errout.str()); + ASSERT_EQUALS("[test.cpp:4]: (information) Technically the member function 'A::strGetString1' can be const.\n", errout.str()); checkConst("class A{\n" @@ -4315,7 +4315,7 @@ private: " return a;\n" " }\n" "};\n"); - ASSERT_EQUALS("[test.cpp:7]: (information) The function 'Derived::get' can be const\n", errout.str()); + ASSERT_EQUALS("[test.cpp:7]: (information) Technically the member function 'Derived::get' can be const.\n", errout.str()); checkConst("class Base1 {\n" "public:\n"