[TEST]:Fix freezer tempset api ci

The patch fix tempset ci fail

Change-Id: Ib013da0c8d1d5e13bb2d350e5a1c485f7efde72d
This commit is contained in:
gecong1973 2019-05-26 20:34:32 -07:00 committed by gecong
parent b27219b4b9
commit 81d0992906
1 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@
# under the License.
import time
import uuid
from tempest.lib import decorators
from tempest.lib import exceptions
@ -74,7 +75,7 @@ class TestFreezerApiClients(base.BaseFreezerApiTest):
client = {'client_id': 'test-client-id',
'hostname': 'test-host-name',
'description': 'a test client',
'uuid': 'test-client-uuid'}
'uuid': uuid.uuid4().hex}
# Create the client with POST
resp, response_body = self.freezer_api_client.post_clients(client)