Removed extra space between variable and = from /extended

This commit is style changes only.

Change-Id: I094ae7680ddf28a234b40765eafd0d9091afdac9
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/extended/test_networkd_ext.robot b/extended/test_networkd_ext.robot
index 3f41da8..3064920 100755
--- a/extended/test_networkd_ext.robot
+++ b/extended/test_networkd_ext.robot
@@ -53,7 +53,7 @@
     ${ipaddress}=      set variable    ${networkInfo['data'][2]}
     ${gateway}=        set variable    ${networkInfo['data'][3]}
 
-    ${isgatewayfound} =    Set Variable If   '${gateway}'=='${NEW_GATEWAY}'  true    false
+    ${isgatewayfound}=    Set Variable If   '${gateway}'=='${NEW_GATEWAY}'  true    false
     Log   ${isgatewayfound}
     ${isIPfound}=    Set Variable if    '${ipaddress}' == '${NEW_IP}'    true   false
     should be true   '${isIPfound}' == 'true' and '${isgatewayfound}' == 'true'
@@ -81,7 +81,7 @@
     ${ipaddress}=      set variable    ${networkInfo['data'][2]}
     ${gateway}=        set variable    ${networkInfo['data'][3]}
 
-    ${isgatewayfound} =    Set Variable If   '${gateway}'=='${OLD_GATEWAY}'  true    false
+    ${isgatewayfound}=    Set Variable If   '${gateway}'=='${OLD_GATEWAY}'  true    false
     Log   ${isgatewayfound}
     ${isIPfound}=    Set Variable if    '${ipaddress}' == '${OLD_IP}'    true   false
     should be true   '${isIPfound}' == 'true' and '${isgatewayfound}' == 'true'
@@ -101,7 +101,7 @@
     ${ipaddress}=      set variable    ${networkInfo['data'][2]}
     ${gateway}=        set variable    ${networkInfo['data'][3]}
 
-    ${isgatewayfound} =    Set Variable If   '${gateway}'=='${OLD_GATEWAY}'  true    false
+    ${isgatewayfound}=    Set Variable If   '${gateway}'=='${OLD_GATEWAY}'  true    false
     Log   ${isgatewayfound}
     ${isIPfound}=    Set Variable if    '${ipaddress}' == '${OLD_IP}'    true   false
     should be true   '${isIPfound}' == 'true' and '${isgatewayfound}' == 'true'
@@ -149,7 +149,7 @@
     ${resp}=       Call Method
     ...    ${OPENBMC_BASE_URI}NetworkManager/Interface/   GetAddress4    data=${args}
     should be equal as strings      ${resp.status_code}     ${HTTP_OK}
-    ${json} =   to json         ${resp.content}
+    ${json}=   to json         ${resp.content}
     Log   ${json['data'][2]}
     Log   ${json['data'][3]}
     [return]    ${json}
@@ -173,7 +173,7 @@
     ${resp}=       Call Method
     ...   ${OPENBMC_BASE_URI}NetworkManager/Interface/   SetHwAddress    data=${args}
     should not be equal as strings      ${resp.status_code}     ${HTTP_OK}
-    ${json} =   to json         ${resp.content}
+    ${json}=   to json         ${resp.content}
     should be equal as strings      ${json['status']}       ${result}
 
 
@@ -184,7 +184,7 @@
     ${resp}=       Call Method
     ...    ${OPENBMC_BASE_URI}NetworkManager/Interface/   SetHwAddress    data=${args}
     should be equal as strings      ${resp.status_code}     ${HTTP_OK}
-    ${json} =   to json         ${resp.content}
+    ${json}=   to json         ${resp.content}
     should be equal as strings      ${json['status']}       ${result}
     Wait For Host To Ping      ${OPENBMC_HOST}
 
@@ -194,5 +194,5 @@
     ${args}=     Create Dictionary   data=@{arglist}
     ${resp}=   Call Method
     ...    ${OPENBMC_BASE_URI}NetworkManager/Interface/    GetHwAddress    data=${args}
-    ${json} =   to json         ${resp.content}
+    ${json}=   to json         ${resp.content}
     should be equal as strings   ${json['data']}    ${address}