aboutsummaryrefslogtreecommitdiffstats
path: root/baro_tests/collectd.py
diff options
context:
space:
mode:
authorToshiaki Takahashi <takahashi.tsc@ncos.nec.co.jp>2019-01-16 02:22:24 +0000
committerToshiaki Takahashi <takahashi.tsc@ncos.nec.co.jp>2019-01-18 14:44:27 +0000
commit32e98a86b99d8c730e19d91e9a13fff644b37ac3 (patch)
treeb3013e2ac0abe97356f4b6b3b581cfe4c77b6f9a /baro_tests/collectd.py
parent903f521e3ae8d4af759f34ae7b39d1e4c9869e6b (diff)
Fix wrong image name in test code
This change fix the name of the container image to be tested from the past name "LocalAgent" to the current name "DMA". This also fix python function names, comments and log output. Change-Id: I8bd8d1d884f6ff59c7e52da31455bc7f042ee9eb Signed-off-by: Toshiaki Takahashi <takahashi.tsc@ncos.nec.co.jp>
Diffstat (limited to 'baro_tests/collectd.py')
-rw-r--r--baro_tests/collectd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/baro_tests/collectd.py b/baro_tests/collectd.py
index 86871b47..c1a05afb 100644
--- a/baro_tests/collectd.py
+++ b/baro_tests/collectd.py
@@ -25,7 +25,7 @@ import time
import logging
import config_server
import tests
-import local_agent
+import dma
from distutils import version
from opnfv.deployment import factory
@@ -878,8 +878,8 @@ def main(bt_logger=None):
else:
pass
- _print_label('Testing LocalAgent on compute nodes')
- res_agent = local_agent.local_agent_main(logger, conf, computes)
+ _print_label('Testing DMA on compute nodes')
+ res_agent = dma.dma_main(logger, conf, computes)
return 0 if res_overall == 0 and res_agent == 0 else 1