Change <> to !=
diff --git a/scripts/approvalTests.py b/scripts/approvalTests.py
index f39553d..77b9265 100644
--- a/scripts/approvalTests.py
+++ b/scripts/approvalTests.py
@@ -94,6 +94,6 @@
 # xml reporter, include passes, warn about No Assertions
 approve( "xml.sw", ["~_", "-s", "-w", "NoAssertions", "-r", "xml"] )
 
-if overallResult <> 0:
+if overallResult != 0:
 	print "run approve.py to approve new baselines"
-exit( overallResult)
\ No newline at end of file
+exit( overallResult)