Correcting a typo in the test case to appease bots.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@293218 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/clang-tidy/modernize-use-noexcept.cpp b/test/clang-tidy/modernize-use-noexcept.cpp
index f3bb252..32d625a 100644
--- a/test/clang-tidy/modernize-use-noexcept.cpp
+++ b/test/clang-tidy/modernize-use-noexcept.cpp
@@ -11,7 +11,7 @@
 template <typename T>
 void foo() throw();
 void footest() { foo<int>(); foo<double>(); }
-// CHECK-MESSAGES: :[[@LINE-2]:12: warning: dynamic exception specification 'throw()' is deprecated; consider using 'noexcept' instead [modernize-use-noexcept]
+// CHECK-MESSAGES: :[[@LINE-2]]:12: warning: dynamic exception specification 'throw()' is deprecated; consider using 'noexcept' instead [modernize-use-noexcept]
 // CHECK-FIXES: void foo() noexcept;
 
 void bar() throw(...);