diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-09-05 17:37:35 +0200 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-09-05 17:38:25 +0200 |
commit | c12b86401ce7eec4ed3b546a6399a3a2599b7e79 (patch) | |
tree | 86baad1396934e4ad4b5e87f4cde1e440613e263 | |
parent | 4d71268bc127fa0e92285fd4550dea794de2ee8f (diff) |
Adapt some calls to functest_utils that don't require logger
Due to a small refactor of some functions in Functest,
the calls to those are outdated and fail.
Change-Id: I1fdce5d343fc55ecd1b25a837608c7172047f22e
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
-rw-r--r-- | test/functest/run_tests.py | 1 | ||||
-rw-r--r-- | test/functest/tempest.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/test/functest/run_tests.py b/test/functest/run_tests.py index 7092479..6f3a969 100644 --- a/test/functest/run_tests.py +++ b/test/functest/run_tests.py @@ -33,7 +33,6 @@ def push_results(testname, start_time, end_time, criteria, details): logger.info("Push testcase '%s' results into the DB...\n" % testname) ft_utils.push_results_to_db("sdnvpn", testname, - logger, start_time, end_time, criteria, diff --git a/test/functest/tempest.py b/test/functest/tempest.py index 832cb4a..61616de 100644 --- a/test/functest/tempest.py +++ b/test/functest/tempest.py @@ -26,7 +26,7 @@ SUCCESS_CRITERIA = ft_utils.get_parameter_from_yaml( def main(): - src_tempest_dir = ft_utils.get_deployment_dir(logger) + src_tempest_dir = ft_utils.get_deployment_dir() if not src_tempest_dir: logger.error("Rally deployment not found.") exit(-1) |