Update tests/security/test_ssl.robot test suite per coding guidelines

Resolves openbmc/openbmc-test-automation#1243

Change-Id: Ifec73f102ad8737836488f3f1757edd933de4a69
Signed-off-by: manasarm <manashsarma@in.ibm.com>
diff --git a/tests/security/test_ssl.robot b/tests/security/test_ssl.robot
index 81a9669..1e8ead2 100644
--- a/tests/security/test_ssl.robot
+++ b/tests/security/test_ssl.robot
@@ -1,5 +1,5 @@
 *** Settings ***
-Documentation     This testsuite is for testing SSL connection to OpenBMC
+Documentation     This testsuite is for testing SSL connection to OpenBMC.
 Suite Teardown    Delete All Sessions
 
 Resource          ../../lib/rest_client.robot
@@ -9,22 +9,21 @@
 
 *** Test Cases ***
 Test SSL Connection
-    [Documentation]     This testcase is for testing the SSL connection to the
-    ...     OpenBMC machine.
+    [Documentation]  This testcase is for testing the SSL connection to the
+    ...  OpenBMC machine.
     [Tags]  Test_SSL_Connection
     Initialize OpenBMC
 
-Test non-SSL Connection to port 80
-    [Documentation]     This testcase is for test to check OpenBMC machine
-    ...     will not accepts the non-secure connection that is with http to
-    ...     port 80 and expect a connection error
-    [Tags]  Test_non_SSL_Connection_to_port_80
-    Create Session    openbmc    http://${OPENBMC_HOST}/    timeout=3
-    Run Keyword And Expect Error    ConnectionError*   Get Request    openbmc   /list
+Test Non-SSL Connection To Port 80
+    [Documentation]  Test that OpenBMC machine does not accept the non-secure
+    ...  http connection at port 80 and would expect a connection error.
+    [Tags]  Test_Non_SSL_Connection_To_Port_80
+    Create Session  openbmc  http://${OPENBMC_HOST}/  timeout=3
+    Run Keyword And Expect Error  ConnectionError*  Get Request  openbmc  /list
 
-Test non-SSL Connection to port 443
+Test Non-SSL Connection To Port 443
     [Documentation]  Test that OpenBmc does not accept the non-secure
-    ...    connection with http to port 443 and expect connection error.
-    [Tags]  Test_non_SSL_Connection_to_port_443
-    Create Session    openbmc    http://${OPENBMC_HOST}:443/
+    ...  http connection at port 443 and would expect a connection error.
+    [Tags]  Test_Non_SSL_Connection_To_Port_443
+    Create Session  openbmc  http://${OPENBMC_HOST}:443/
     Run Keyword And Expect Error  ConnectionError*  Get Request  openbmc  /list