From 93b71733e486d62378f044f94cc5c4517a784472 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu>
Date: Wed, 9 Dec 2020 11:31:09 +0100
Subject: [PATCH] Check for postgresql-client package in postgresql test

---
 tests/scripts/test_postgresql.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/scripts/test_postgresql.py b/tests/scripts/test_postgresql.py
index e7e233ba..ed27e0bf 100755
--- a/tests/scripts/test_postgresql.py
+++ b/tests/scripts/test_postgresql.py
@@ -389,7 +389,7 @@ def main():
     """Run all checks and exits with corresponding exit code."""
 
     apt = Apt()
-    if "postgresql" not in apt.installed_packages:
+    if "postgresql-client" not in apt.installed_packages:
         exit(2)
 
     # load configuration
-- 
GitLab