autotest: fix get_chart_address argument type error
BUG=b:123272371
TEST=none
Change-Id: I80e48d294b2ed03d70cbf73d95c826434b6b5aa3
Reviewed-on: https://chromium-review.googlesource.com/c/1442040
Commit-Queue: Kuo Jen Wei <[email protected]>
Tested-by: Ilja H. Friedel <[email protected]>
Reviewed-by: Ilja H. Friedel <[email protected]>
Reviewed-by: Kazuhiro Inaba <[email protected]>
diff --git a/server/cros/camerabox_utils.py b/server/cros/camerabox_utils.py
index 1523f1f..c9d61d5 100644
--- a/server/cros/camerabox_utils.py
+++ b/server/cros/camerabox_utils.py
@@ -43,12 +43,20 @@
def get_chart_address(host_address, args):
+ """Get address of chart tablet from commandline args or mapping logic in
+ test lab.
+
+ @param host_address: a list of hostname strings.
+ @param args: a dict parse from commandline args.
+ @return:
+ A list of strings for chart tablet addresses.
+ """
address = utils.args_to_dict(args).get('chart')
if address is not None:
return address.split(',')
elif utils.is_in_container():
return [
- utils.get_lab_chart_address(host.hostname)
+ utils.get_lab_chart_address(host)
for host in host_address
]
else: