From da5d5300298c988223a83309ef217259ced9e429 Mon Sep 17 00:00:00 2001 From: Nicolas KAROLAK <nicolas@karolak.fr> Date: Mon, 3 Sep 2018 11:50:14 +0200 Subject: [PATCH] change(test_postgresql): msg style --- tests/test_postgresql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_postgresql.py b/tests/test_postgresql.py index 2edaad66..fd45fe8c 100755 --- a/tests/test_postgresql.py +++ b/tests/test_postgresql.py @@ -355,10 +355,10 @@ def check_ha(db_conn: dict, errors: int = 0) -> int: standby["port"] = 54322 status, info = check_replication(primary, standby) if not status: - error("Cannot replicate data between primary/standby: {}".format(info)) + error("Cannot replicate data between primary/standby ({})".format(info)) errors += 1 else: - success("Can replicate data between primary/standby: {}".format(info)) + success("Can replicate data between primary/standby ({})".format(info)) return errors -- GitLab