We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c2c6a4 commit 2b7d4d1Copy full SHA for 2b7d4d1
test/integration/test_iam_access_groups_v2.py
@@ -23,6 +23,7 @@
23
import os
24
import os.path
25
import datetime
26
+import random
27
from ibm_cloud_sdk_core.authenticators import NoAuthAuthenticator
28
from ibm_cloud_sdk_core import *
29
from ibm_platform_services.iam_access_groups_v2 import *
@@ -57,7 +58,7 @@ def setUpClass(cls):
57
58
cls.testGroupDescription = "This group is used for integration test purposes. It can be deleted at any time."
59
cls.testGroupETag = ""
60
cls.testGroupId = ""
- cls.testUserId = "IBMid-1234"
61
+ cls.testUserId = "IBMid-" + str(random.randint(0, 99999))
62
cls.testUserType = "user"
63
cls.testClaimRuleId = ""
64
cls.testClaimRuleETag = ""
0 commit comments