Revert rCTE349288 'Fix a lit test failure after MallocChecker changes'


git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@349341 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/clang-tidy/static-analyzer.cpp b/test/clang-tidy/static-analyzer.cpp
index db06afc..af9693a 100644
--- a/test/clang-tidy/static-analyzer.cpp
+++ b/test/clang-tidy/static-analyzer.cpp
@@ -7,7 +7,7 @@
   int *p = new int(42);
   delete p;
   delete p;
-  // CHECK: warning: Attempt to delete released memory [clang-analyzer-cplusplus.NewDelete]
+  // CHECK: warning: Attempt to free released memory [clang-analyzer-cplusplus.NewDelete]
 }
 
 void g() {