From 10dd691e802c80805ef22d47b3f68a8ac0cf03e2 Mon Sep 17 00:00:00 2001 From: Nicolas KAROLAK <nicolas.karolak@ubicast.eu> Date: Mon, 23 Sep 2019 17:56:00 +0200 Subject: [PATCH] fix --- tests/test_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_email.py b/tests/test_email.py index 0aa6027c..5fb7709f 100755 --- a/tests/test_email.py +++ b/tests/test_email.py @@ -35,7 +35,7 @@ def check_listen() -> tuple: status, out = subprocess.getstatusoutput("ss -pant | grep master | grep ':25'") if status != 0 or ("127.0.0.1:25" not in out and "[::1]:25" not in out): - u.warnings("Postfix is not listening on localhost:25") + u.warning("Postfix is not listening on localhost:25") warnings += 1 else: u.success("Postfix is listening on localhost:25") -- GitLab