Change <> to !=

This commit is contained in:
Martin Moene 2014-03-08 11:31:11 +01:00
parent dd2810d60a
commit 91ea20c4cc
1 changed files with 2 additions and 2 deletions

View File

@ -94,6 +94,6 @@ approve( "junit.sw", ["~_", "-s", "-w", "NoAssertions", "-r", "junit"] )
# 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)
exit( overallResult)