fix test case.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108671 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Analysis/stream.c b/test/Analysis/stream.c
index 953fc4d..bc1b58e 100644
--- a/test/Analysis/stream.c
+++ b/test/Analysis/stream.c
@@ -44,5 +44,5 @@
 void f6(void) {
   FILE *p = fopen("foo", "r");
   fclose(p); 
-  fclose(p); // expected-warning {{Try to close a file Descriptor already closed. Cause Undefined Behaviour.}}
+  fclose(p); // expected-warning {{Try to close a file Descriptor already closed. Cause undefined behaviour.}}
 }