Revert "IPMI cipher level integrity test"

This reverts commit ed89757567fe84b0cba44404ee8a0d90270574fb.

Signed-off-by: Charles Hofer <charles.hofer@ibm.com>
Change-Id: I15d5f6422ef5cf88645c83ab80b37cd4e21e7e99
diff --git a/tests/ipmi/test_general_ipmi.robot b/tests/ipmi/test_general_ipmi.robot
index d1c05c4..305ac2e 100644
--- a/tests/ipmi/test_general_ipmi.robot
+++ b/tests/ipmi/test_general_ipmi.robot
@@ -11,6 +11,7 @@
 
 Test Teardown       FFDC On Test Case Fail
 
+
 *** Variables ***
 
 ${new_mc_id}=  HOST
@@ -19,13 +20,6 @@
 
 *** Test Cases ***
 
-Verify Supported Cipher List
-    [Documentation]  Execute all supported cipher levels and verify.
-    [Tags]  Verify_Supported_Cipher_List
-
-    :FOR  ${cipher_level}  IN  @{valid_cipher_list}
-    \  Execute IPMI Command With Cipher  ${cipher_level}
-
 Set Asset Tag With Valid String Length
     [Documentation]  Set asset tag with valid string length and verify.
     [Tags]  Set_Asset_Tag_With_Valid_String_Length
@@ -714,19 +708,3 @@
     ${physical_interface_count}=  Get Length  ${mac_unique_list}
 
     [Return]  ${physical_interface_count}
-
-
-Execute IPMI Command With Cipher
-    [Documentation]  Execute IPMI command with a given cipher level value.
-    [Arguments]  ${cipher_level}
-
-    # Description of argument(s):
-    # cipher_level  IPMI chipher level value
-    #               (e.g. "1", "2", "3", "15", "16", "17").
-
-    ${ipmi_cmd}=  Catenate  SEPARATOR=
-    ...  ipmitool -I lanplus -C ${cipher_level} -P${SPACE}${IPMI_PASSWORD}
-    ...  ${SPACE}${HOST}${SPACE}${OPENBMC_HOST}${SPACE}mc info
-
-    ${rc}  ${output}=  Run And Return RC and Output  ${ipmi_cmd}
-    Should Be Equal  ${rc}  ${0}  msg=${output}