Fixed Creation With Invalid ID failure in IPMI user

Once the random user id is in the range of 16 to 63,
the response is "Set User Name command failed (user 63, name newuser): Parameter out of range".
The case will then fail because the message is different from
"User ID is limited to range".

Signed-off-by: Tony Lee <tony.lee@quantatw.com>
Change-Id: If9cbe50e442f02eab954baddc6b375d027cccc4e
diff --git a/ipmi/test_ipmi_user.robot b/ipmi/test_ipmi_user.robot
index e390a12..2445601 100644
--- a/ipmi/test_ipmi_user.robot
+++ b/ipmi/test_ipmi_user.robot
@@ -80,7 +80,7 @@
     FOR  ${id}  IN  @{id_list}
       ${msg}=  Run Keyword And Expect Error  *  Run IPMI Standard Command
       ...  user set name ${id} newuser
-      Should Contain  ${msg}  User ID is limited to range
+      Should Contain Any  ${msg}  User ID is limited to range  Parameter out of range
     END
 
 Verify Setting IPMI User With Invalid Password