Change error to info and rephrase the message

This commit is contained in:
selfhoster1312 2023-01-08 19:46:01 +01:00
parent e8fbcf6b5c
commit cbe1450d67

View file

@ -2663,8 +2663,8 @@ class Script(TestSuite):
@test(only=["_common.sh"]) @test(only=["_common.sh"])
def no_progress_in_common(self): def no_progress_in_common(self):
if self.contains("ynh_script_progression"): if self.contains("ynh_script_progression"):
yield Error( yield Info(
"You should not use `ynh_script_progression` in _common.sh because it will not work." "You should not use `ynh_script_progression` in _common.sh because it will produce warnings when trying to install the application."
) )