From 55836c174ddc70b46c78787fd50af31d44357f08 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Wed, 12 Jun 2024 17:29:36 +0200 Subject: [PATCH] CppEditor: Fix unit test Amends f477ede697c67c0716232963298a6e9d218ed8d6. Change-Id: Ibc6ae49adbe6932c57ca22008cbd354cd3bd26f5 Reviewed-by: David Schulz --- .../testcases/move-class/complex/theclass.h_expected | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/cppeditor/testcases/move-class/complex/theclass.h_expected b/src/plugins/cppeditor/testcases/move-class/complex/theclass.h_expected index c7db776d277..12df0c76295 100644 --- a/src/plugins/cppeditor/testcases/move-class/complex/theclass.h_expected +++ b/src/plugins/cppeditor/testcases/move-class/complex/theclass.h_expected @@ -1,5 +1,5 @@ -#ifndef PROJECT_INTERNAL_THECLASS_H -#define PROJECT_INTERNAL_THECLASS_H +#ifndef THECLASS_H +#define THECLASS_H namespace Project { namespace Internal { @@ -26,4 +26,4 @@ template T TheClass::defaultValue() const { return T(); } } // namespace Internal } // namespace Project -#endif // PROJECT_INTERNAL_THECLASS_H +#endif // THECLASS_H