From 67608a463ae070bec45b106a37ed46c3cfd44f79 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 14 Jul 2022 15:32:18 +0200 Subject: [PATCH] tests - add missing decode --- tests/AutoconfTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AutoconfTest.py b/tests/AutoconfTest.py index e8c6b73a8..20b7a03dc 100644 --- a/tests/AutoconfTest.py +++ b/tests/AutoconfTest.py @@ -45,7 +45,7 @@ class AutoconfTest(Test) : proc = run('docker inspect --format "{{json .State.Health }}" autoconf_mybunker_1', cwd="/tmp/autoconf", shell=True, capture_output=True) if proc.returncode != 0 : raise(Exception("docker-compose inspect failed (autoconf stack)")) - if "healthy" in proc.stdout : + if "healthy" in proc.stdout.decode() : healthy = True break sleep(1)