Made change to create user other then user 1

Change-Id: I150b44ff3c29e481d8b7fca7bd4be9bdce5aa503
Signed-off-by: Rahul Maheshwari <rahulmaheshwari@in.ibm.com>
diff --git a/ipmi/test_ipmi_user.robot b/ipmi/test_ipmi_user.robot
index 04d260a..380c821 100644
--- a/ipmi/test_ipmi_user.robot
+++ b/ipmi/test_ipmi_user.robot
@@ -23,7 +23,7 @@
     [Tags]  Test_IPMI_User_Creation_With_Valid_Name_And_ID
 
     ${random_username}=  Generate Random String  8  [LETTERS]
-    ${random_userid}=  Evaluate  random.randint(1, 15)  modules=random
+    ${random_userid}=  Evaluate  random.randint(2, 15)  modules=random
     IPMI Create User  ${random_userid}  ${random_username}
 
 
@@ -32,7 +32,7 @@
     ...  name(e.g. user name with special characters).
     [Tags]  Verify_IPMI_User_Creation_With_Invalid_Name
 
-    ${random_userid}=  Evaluate  random.randint(1, 15)  modules=random
+    ${random_userid}=  Evaluate  random.randint(2, 15)  modules=random
     ${msg}=  Run Keyword And Expect Error  *  Run IPMI Standard Command
     ...  user set name ${random_userid} ${invalid_username}
     Should Contain  ${msg}  Invalid data
@@ -61,7 +61,7 @@
 
     # Create IPMI user.
     ${random_username}=  Generate Random String  8  [LETTERS]
-    ${random_userid}=  Evaluate  random.randint(1, 15)  modules=random
+    ${random_userid}=  Evaluate  random.randint(2, 15)  modules=random
     IPMI Create User  ${random_userid}  ${random_username}
 
     # Set invalid password for newly created user.
@@ -103,7 +103,7 @@
 
     # Create IPMI user.
     ${random_username}=  Generate Random String  8  [LETTERS]
-    ${random_userid}=  Evaluate  random.randint(1, 15)  modules=random
+    ${random_userid}=  Evaluate  random.randint(2, 15)  modules=random
     IPMI Create User  ${random_userid}  ${random_username}
 
     # Set null password for newly created user.