Make my test case test what it meant to

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117974 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Analysis/operator-calls.cpp b/test/Analysis/operator-calls.cpp
index 1b8b629..892a1ab 100644
--- a/test/Analysis/operator-calls.cpp
+++ b/test/Analysis/operator-calls.cpp
@@ -12,5 +12,5 @@
 }
 
 bool PR7287(X0 a, X0 b) {
-  return a == b;
+  return operator==(a, b);
 }