aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
authorJose Lausuch <jalausuch@suse.com>2017-11-23 15:36:59 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-11-23 15:36:59 +0000
commit78931812eb088e9b844b3597b482a007e694059b (patch)
tree7c3962c83f279fb7f54410b2bd4bd5a823ab492a /functest
parent60d2025808adf1dad6a41e5df34d0eff9c725e2e (diff)
parent5fcf83714d04b1c0c7001deca5312ee577d8b745 (diff)
Merge "Remove _set_others() from config"
Diffstat (limited to 'functest')
-rw-r--r--functest/utils/config.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/functest/utils/config.py b/functest/utils/config.py
index 6b5021a2c..6bb4f58ee 100644
--- a/functest/utils/config.py
+++ b/functest/utils/config.py
@@ -15,7 +15,6 @@ class Config(object):
self._parse(None, self.functest_yaml)
except Exception as error:
raise Exception('Parse config failed: {}'.format(str(error)))
- self._set_others()
def _parse(self, attr_now, left_parametes):
for param_n, param_v in six.iteritems(left_parametes):
@@ -29,7 +28,5 @@ class Config(object):
return attr_now if next == 'general' else (
'{}_{}'.format(attr_now, next) if attr_now else next)
- def _set_others(self):
- pass
CONF = Config()