diff --git a/scripts/approvalTests.py b/scripts/approvalTests.py index f39553dd..77b92657 100644 --- a/scripts/approvalTests.py +++ b/scripts/approvalTests.py @@ -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) \ No newline at end of file +exit( overallResult)