diff --git a/clang-tools-extra/unittests/clang-move/ClangMoveTests.cpp b/clang-tools-extra/unittests/clang-move/ClangMoveTests.cpp index 2514327ec0d1..169bdd23a4ba 100644 --- a/clang-tools-extra/unittests/clang-move/ClangMoveTests.cpp +++ b/clang-tools-extra/unittests/clang-move/ClangMoveTests.cpp @@ -65,7 +65,7 @@ const char TestCC[] = "#include \"foo.h\"\n" "static int kConstInt2 = 1;\n" "\n" "/** comment4\n" - "*/\n" + " */\n" "static int help() {\n" " int a = 0;\n" " return a;\n" @@ -120,7 +120,7 @@ const char ExpectedTestCC[] = "#include \"foo.h\"\n" "static int kConstInt2 = 1;\n" "\n" "/** comment4\n" - "*/\n" + " */\n" "static int help() {\n" " int a = 0;\n" " return a;\n" @@ -174,7 +174,7 @@ const char ExpectedNewCC[] = "namespace a {\n" "static int kConstInt2 = 1;\n" "\n" "/** comment4\n" - "*/\n" + " */\n" "static int help() {\n" " int a = 0;\n" " return a;\n"