Removed extra space between variable and = from /tests

This commit is style changes only.

Change-Id: I27905200df8e9188cfac61fe94a5f070dfc92f1b
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/tests/test_bootpolicy.robot b/tests/test_bootpolicy.robot
index 4bc4911..91a665d 100644
--- a/tests/test_bootpolicy.robot
+++ b/tests/test_bootpolicy.robot
@@ -22,7 +22,7 @@
 
     Set Boot Policy   ONETIME
 
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Be Equal    ${boot}    ONETIME
     ${output}   ${stderr}=  Execute Command  ${dbuscmd}  return_stderr=True
     Should Be Empty     ${stderr}
@@ -34,7 +34,7 @@
 
     Set Boot Policy   PERMANENT
 
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Be Equal    ${boot}    PERMANENT
     ${output}   ${stderr}=  Execute Command  ${dbuscmd}  return_stderr=True
     Should Be Empty     ${stderr}
@@ -45,7 +45,7 @@
     ...               and then verify using REST URI and ipmitool.\n
 
     Run IPMI command   0x0 0x8 0x05 0x80 0x00 0x00 0x00 0x00
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Be Equal    ${boot}    ONETIME
     ${output}   ${stderr}=  Execute Command  ${dbuscmd}  return_stderr=True
     Should Be Empty     ${stderr}
@@ -56,7 +56,7 @@
     ...               and then verify using REST URI and ipmitool.
 
     Run IPMI command   0x0 0x8 0x05 0xC0 0x00 0x00 0x00 0x00
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Be Equal    ${boot}    PERMANENT
     ${output}   ${stderr}=  Execute Command  ${dbuscmd}  return_stderr=True
     Should Be Empty     ${stderr}
@@ -75,10 +75,10 @@
 
     Initiate Power On
 
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Be Equal    ${boot}    PERMANENT
 
-    ${flag} =   Read Attribute  /org/openbmc/settings/host0    boot_flags
+    ${flag}=   Read Attribute  /org/openbmc/settings/host0    boot_flags
     Should Be Equal    ${flag}    CDROM
 
 Onetime boot order after warm reset
@@ -95,10 +95,10 @@
 
     Trigger Warm Reset
 
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Be Equal    ${boot}    ONETIME
 
-    ${flag} =   Read Attribute  /org/openbmc/settings/host0    boot_flags
+    ${flag}=   Read Attribute  /org/openbmc/settings/host0    boot_flags
     Should Be Equal    ${flag}    Network
 
 Permanent boot order after warm reset
@@ -115,10 +115,10 @@
 
     Trigger Warm Reset
 
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Be Equal    ${boot}    PERMANENT
 
-    ${flag} =   Read Attribute  /org/openbmc/settings/host0    boot_flags
+    ${flag}=   Read Attribute  /org/openbmc/settings/host0    boot_flags
     Should Be Equal    ${flag}    CDROM
 
 Set boot policy to invalid value
@@ -128,21 +128,21 @@
 
     Run Keyword and Ignore Error    Set Boot Policy   abc
 
-    ${boot} =   Read Attribute  /org/openbmc/settings/host0    boot_policy
+    ${boot}=   Read Attribute  /org/openbmc/settings/host0    boot_policy
     Should Not Be Equal    ${boot}    abc
 
 *** Keywords ***
 
 Set Boot Policy
     [Arguments]    ${args}
-    ${bootpolicy} =   Set Variable   ${args}
-    ${valueDict} =   create dictionary   data=${bootpolicy}
+    ${bootpolicy}=   Set Variable   ${args}
+    ${valueDict}=   create dictionary   data=${bootpolicy}
     Write Attribute    /org/openbmc/settings/host0   boot_policy   data=${valueDict}
 
 Set Boot Device
     [Arguments]    ${args}
-    ${bootDevice} =   Set Variable   ${args}
-    ${valueDict} =   create dictionary   data=${bootDevice}
+    ${bootDevice}=   Set Variable   ${args}
+    ${valueDict}=   create dictionary   data=${bootDevice}
     Write Attribute    /org/openbmc/settings/host0   boot_flags   data=${valueDict}