commit | a5feec98fc2ee9cc759c02f36246e2b47c5f24cc | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Tue Sep 25 19:35:44 2012 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Tue Sep 25 19:35:44 2012 +0000 |
tree | 127c89d22f6ca13ccfcf9e454048481079c7402d | |
parent | 494d9388f54ed3dee6d4d0baff427c3ad77cc676 [diff] | |
parent | 6ec6fc2fa028aea19a01766645a5598a0ea9e11b [diff] |
Merge "make the rand_name value shorter"
diff --git a/tempest/common/utils/data_utils.py b/tempest/common/utils/data_utils.py index 752bc10..fc7c112 100644 --- a/tempest/common/utils/data_utils.py +++ b/tempest/common/utils/data_utils.py
@@ -5,7 +5,7 @@ def rand_name(name='test'): - return name + str(random.randint(1, 99999999999)) + return name + str(random.randint(1, 999999)) def build_url(host, port, api_version=None, path=None,