Stupid typo leading to apps with exactly 3 warnings being able to reach level 7+ T_T

This commit is contained in:
Alexandre Aubin 2021-10-01 04:08:15 +02:00
parent c4af75125a
commit 6338aca006

View file

@ -396,7 +396,7 @@ class App(TestSuite):
_print(" There are some critical issues in this app :(")
elif tests_reports["error"]:
_print(" Uhoh there are some errors to be fixed :(")
elif len(tests_reports["warning"]) > 3:
elif len(tests_reports["warning"]) >= 3:
_print(" Still some warnings to be fixed :s")
elif len(tests_reports["warning"]) == 2:
_print(" Only 2 warnings remaining! You can do it!")