From 91ea20c4cc80b7f08308de975c85a7a16d319443 Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Sat, 8 Mar 2014 11:31:11 +0100 Subject: [PATCH] Change <> to != --- scripts/approvalTests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)