aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-11-23 13:42:13 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-11-23 13:42:13 +0000
commit363105398eaace95234e5fe80a3f8b74fa505b01 (patch)
tree11b360f1197ea8a165a4465147f8081e669fbab3 /functest
parenta508c431dd66aa86b27b06da716ffe6a8b63409c (diff)
parent1163599ab5e54e7e1f06d06f4b1c6ac6a0610ecc (diff)
Merge "Fix how tier_handler is imported" into stable/euphrates
Diffstat (limited to 'functest')
-rw-r--r--functest/ci/tier_builder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/functest/ci/tier_builder.py b/functest/ci/tier_builder.py
index d2722dc22..c9969b612 100644
--- a/functest/ci/tier_builder.py
+++ b/functest/ci/tier_builder.py
@@ -7,9 +7,10 @@
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
-import tier_handler as th
import yaml
+import functest.ci.tier_handler as th
+
class TierBuilder(object):