Fix incorrect spacing in robot keyword.

In newer robot versions not having this spacing causes that the
first set of arguments is interpreted as an standalone parameter,
causing failures in SSHLibrary as it tries to look for incorrect
hostnames: "${ip_address} prompt=${prompt}"

Change-Id: Ic05b590bc3880d92777f606eb1f3572525fbcfa0
Signed-off-by: Erich Cordoba <erich.cordoba.malibran@intel.com>
This commit is contained in:
Erich Cordoba 2019-09-12 07:34:27 -05:00
parent bc0efc1806
commit bc47920014
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@ Connect to Controller Node
[Documentation] Stablish a SSH connection to the controller and return
... the connection id
${controller_connection} SSHLibrary.Open_Connection
... ${ip_address} prompt=${prompt} timeout=${timeout}
... ${ip_address} prompt=${prompt} timeout=${timeout}
Flexible SSH Login ${user} ${password}
[Return] ${controller_connection}