From 6b5a8935b9217ed53b66d75fcd922afc3ca00847 Mon Sep 17 00:00:00 2001 From: chrchr-github Date: Mon, 8 Apr 2024 23:10:04 +0200 Subject: [PATCH] Fix --- test/testclass.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testclass.cpp b/test/testclass.cpp index 465caef5d0c..e6fb80f002e 100644 --- a/test/testclass.cpp +++ b/test/testclass.cpp @@ -8986,8 +8986,8 @@ class TestClass : public TestFixture { " int getI() const { return i; }" " std::string getS() const { return s; }" "};"); - ASSERT_EQUALS("[test.cpp:1]: (style) Function 'getT()' should return member 't' by const reference.\n" - "[test.cpp:1]: (style) Function 'getS()' should return member 's' by const reference.\n", + ASSERT_EQUALS("[test.cpp:1]: (performance) Function 'getT()' should return member 't' by const reference.\n" + "[test.cpp:1]: (performance) Function 'getS()' should return member 's' by const reference.\n", errout_str()); }