From: Klement Sekera Date: Mon, 2 Sep 2019 14:26:26 +0000 (+0000) Subject: tests: fix centos detection X-Git-Tag: v20.05-rc0~902 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F75%2F21675%2F2;p=vpp.git tests: fix centos detection Type: fix Fixes: defde0f870 Change-Id: Ib81e3610bd0fc22901a902dc76692f1951ead2b8 Signed-off-by: Klement Sekera --- diff --git a/test/framework.py b/test/framework.py index 307da8f22f2..c049b1ae3bf 100644 --- a/test/framework.py +++ b/test/framework.py @@ -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):