Reduced vcpu testing limit

ranger of vcpu limit exceeds typical
maximum allowable range of ranger, reduced
range to fit ranger use cases

Change-Id: I3ad61cc6d24e104012e6b59f9ab016413b61056c
This commit is contained in:
jh629g 2020-06-24 10:26:00 -05:00 committed by Jeremy Houser
parent 6d356f4e16
commit 67dd3d33bb

View File

@ -48,7 +48,7 @@ class FmsBaseOrmTest(base.BaseOrmTest):
region["name"] = CONF.identity.region
ram = random.randint(1, 4) * 1024
swap = random.randint(1, 40) * 1024
vcpus = random.randint(2, 40)
vcpus = random.randint(2, 36)
disk = random.randint(2, 102)
post_body['id'] = uuid.uuid4().hex
post_body["description"] = \