From 058fb59a3daa93899f2377918daf4143b5447043 Mon Sep 17 00:00:00 2001
From: Nicolas KAROLAK <nicolas@karolak.fr>
Date: Fri, 27 Mar 2020 08:52:46 +0000
Subject: [PATCH] show pending updates as info instead of warning

---
 tests/test_apt.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/test_apt.py b/tests/test_apt.py
index d628930b..04c5fef0 100755
--- a/tests/test_apt.py
+++ b/tests/test_apt.py
@@ -49,8 +49,7 @@ def main():
     # detect pending upgrade
     upgradable = len(apt.upgradable_packages)
     if upgradable:
-        u.warning("there is {} upgrade pending".format(upgradable))
-        warnings += 1
+        u.info("there is {} upgrade pending".format(upgradable))
     else:
         u.success("system up-to-date")
 
-- 
GitLab