From: Jamo Luhrsen Date: Thu, 4 Aug 2016 21:28:22 +0000 (-0700) Subject: add missing quote for grep string X-Git-Tag: release/beryllium-sr3~2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=2eaac1f4d3fd35cd101bd6f7bd0a3a2dd8c3d07b;p=integration%2Ftest.git add missing quote for grep string Change-Id: I2a886c67d2333b3633cd6a3d8471df69d0bbebb3 Signed-off-by: Jamo Luhrsen --- diff --git a/csit/libraries/OpenStackOperations.robot b/csit/libraries/OpenStackOperations.robot index 67281ff7a1..16d59026f0 100644 --- a/csit/libraries/OpenStackOperations.robot +++ b/csit/libraries/OpenStackOperations.robot @@ -140,7 +140,7 @@ Get Port Id [Arguments] ${port_name} ${devstack_conn_id} [Documentation] Retrieve the port id for the given port name to attach specific vm instance to a particular port Switch Connection ${devstack_conn_id} - ${port_id}= Write Commands Until Prompt neutron port-list | grep "${port_name} | awk '{print $2}' 30s + ${port_id}= Write Commands Until Prompt neutron port-list | grep "${port_name}" | awk '{print $2}' 30s Log ${port_id} [Return] ${port_id}