From 9f3f21f0f9d58ff298aea93577567bf938b05739 Mon Sep 17 00:00:00 2001 From: Kornel Benko Date: Wed, 11 Jan 2023 06:45:38 +0100 Subject: [PATCH] Cmake tests: Nothing to output in case of no error in simplehtml_validity.py --- development/autotests/simplehtml_validity.py | 1 - 1 file changed, 1 deletion(-) diff --git a/development/autotests/simplehtml_validity.py b/development/autotests/simplehtml_validity.py index 896b4a29fc..22b96f4102 100644 --- a/development/autotests/simplehtml_validity.py +++ b/development/autotests/simplehtml_validity.py @@ -33,7 +33,6 @@ validator = html5validator.Validator(format='text') error_count = validator.validate(xhtml_list) if error_count == 0: - print('> Found no validation error!') sys.exit(0) else: print('> Found a validation error!')