tests: fix centos detection 94/22294/2
authorKlement Sekera <[email protected]>
Mon, 2 Sep 2019 14:26:26 +0000 (14:26 +0000)
committerAndrew Yourtchenko <[email protected]>
Sat, 28 Sep 2019 20:23:04 +0000 (20:23 +0000)
Type: fix
Fixes: defde0f870

Change-Id: Ib81e3610bd0fc22901a902dc76692f1951ead2b8
Signed-off-by: Klement Sekera <[email protected]>
(cherry picked from commit 3a350702ec24d1bde0483da1e946015c2b81e0c4)

test/framework.py

index 307da8f..c049b1a 100644 (file)
@@ -218,7 +218,7 @@ def _running_on_centos():
     return True if "centos" in os_id.lower() else False
 
 
-running_on_centos = _running_on_centos
+running_on_centos = _running_on_centos()
 
 
 class KeepAliveReporter(object):