diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments.cpp b/clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments.cpp index 591c9dae5a7..b4e79c97c00 100644 --- a/clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments.cpp +++ b/clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments.cpp @@ -25,10 +25,10 @@ void f(); // So that the namespace isn't empty. // 5 // 6 // 7 -// CHECK-MESSAGES: :[[@LINE+2]]:1: warning: namespace 'macro_expansion' not terminated with -// CHECK-MESSAGES: :[[@LINE-10]]:11: note: namespace 'macro_expansion' starts here +// CHECK-MESSAGES: :[[@LINE+2]]:1: warning: namespace 'MACRO' not terminated with +// CHECK-MESSAGES: :[[@LINE-10]]:11: note: namespace 'MACRO' starts here } -// CHECK-FIXES: } // namespace macro_expansion +// CHECK-FIXES: } // namespace MACRO namespace short1 { namespace short2 { |