Eliminate a FIXME in one of the PCH test cases

llvm-svn: 69757
diff --git a/clang/test/PCH/variables.c b/clang/test/PCH/variables.c
index 18eae60..c988a59 100644
--- a/clang/test/PCH/variables.c
+++ b/clang/test/PCH/variables.c
@@ -11,8 +11,8 @@
 double z; // expected-error{{redefinition}}
 // FIXME:variables.h expected-note{{previous}}
 int z2 = 18; // expected-error{{redefinition}}
-//double VeryHappy; // FIXME: xpected-error{{redefinition}}
-
+double VeryHappy; // expected-error{{redefinition}}
+// FIXME:variables.h expected-note{{previous definition is here}}
 
 int Q = A_MACRO_IN_THE_PCH;