aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2020-09-15 11:17:29 +0200
committerChristian Stenger <christian.stenger@qt.io>2020-09-15 12:00:53 +0000
commit7ca297cb25c9828bd3193fa2bc44c9177640ae1d (patch)
treea3126234d6bcb6b37b1792d68b6a153d9ca41d6a
parent71ca4f4402ea0682a778d2bbd39bf0d3db00a96d (diff)
CppEditor: Fix test code
Change-Id: I01073f481ebdae64c30971afd8fb332ee92e2a1e Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--src/plugins/cppeditor/cppdoxygen_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cppeditor/cppdoxygen_test.cpp b/src/plugins/cppeditor/cppdoxygen_test.cpp
index 639e0d5b8a..97d2fb26b9 100644
--- a/src/plugins/cppeditor/cppdoxygen_test.cpp
+++ b/src/plugins/cppeditor/cppdoxygen_test.cpp
@@ -204,11 +204,11 @@ void DoxygenTest::testBasic_data()
QTest::newRow("cpp_styleA_indented_preserve_mixed_indention_continuation") << _(
"\t bool preventFolding;\n"
- "\t /// \brief a|\n"
+ "\t /// \\brief a|\n"
"\t int a;\n"
) << _(
"\t bool preventFolding;\n"
- "\t /// \brief a\n"
+ "\t /// \\brief a\n"
"\t /// \n"
"\t int a;\n"
);