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 9986149 commit 831e549Copy full SHA for 831e549
tests/testssample.py
@@ -157,7 +157,7 @@ def testCreateCustomerProfile(self):
157
createdCustomerProfileID = None
158
createCustomerProfile = apicontractsv1.createCustomerProfileRequest()
159
createCustomerProfile.merchantAuthentication = self.merchantAuthentication
160
- randomInt = random.randint(0, 10000)
+ randomInt = str(random.randint(0, 10000))
161
createCustomerProfile.profile = apicontractsv1.customerProfileType()
162
createCustomerProfile.profile.merchantCustomerId = 'jdoe%s' % randomInt
163
createCustomerProfile.profile.description = 'John Doe%s' % randomInt
0 commit comments