diff options
author | Klement Sekera <ksekera@cisco.com> | 2019-09-02 14:26:26 +0000 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-09-28 20:23:04 +0000 |
commit | e1204e50495075912e96d897ce5962319ac02323 (patch) | |
tree | 7587e496dfcd6a40abb8363b5a73499c91fefb94 /test | |
parent | b462d94038143791f47b7159fcd76ee17a1b5cb8 (diff) |
tests: fix centos detection
Type: fix
Fixes: defde0f870
Change-Id: Ib81e3610bd0fc22901a902dc76692f1951ead2b8
Signed-off-by: Klement Sekera <ksekera@cisco.com>
(cherry picked from commit 3a350702ec24d1bde0483da1e946015c2b81e0c4)
Diffstat (limited to 'test')
-rw-r--r-- | test/framework.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |