From d911314c2d398b88f6a026c25932ce655a7d766a Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 25 Apr 2015 22:51:02 +0200 Subject: [PATCH] britney.py: Enable the new consistency checks by default Signed-off-by: Niels Thykier --- britney.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/britney.py b/britney.py index 170c194..1a8e7a9 100755 --- a/britney.py +++ b/britney.py @@ -364,9 +364,9 @@ class Britney(object): self.__log(" ... %s %s != %s" % (check_field_name[f], v1, v2)) # test suite doesn't appreciate aborts of this nature - #if any_mismatch: - # self.__log("Mismatches found, exiting.", type="I") - # sys.exit(1) + if any_mismatch: + self.__log("Mismatches found, exiting.", type="I") + sys.exit(1) return def __parse_arguments(self):