From 0ecafcd6a0c4aa25464db9d70f55d1bae071f80e Mon Sep 17 00:00:00 2001 From: zhangguoqing Date: Wed, 7 Dec 2016 05:21:38 +0000 Subject: [PATCH] Fix TOKENID format which should without dashed [1] is wrong amendment which had change the TOKENID's format. Since [2] had been merged, this patch fix the format without dashed. [1] https://review.openstack.org/#/c/399359/1/watcherclient/tests/keystone_client_fixtures.py [2] https://review.openstack.org/#/c/398788 Change-Id: I80b953cbf31e2b09160f0b55ffe48eea845c2dd4 --- watcherclient/tests/keystone_client_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcherclient/tests/keystone_client_fixtures.py b/watcherclient/tests/keystone_client_fixtures.py index 40dbf1f..a175d7f 100644 --- a/watcherclient/tests/keystone_client_fixtures.py +++ b/watcherclient/tests/keystone_client_fixtures.py @@ -49,7 +49,7 @@ V3_VERSION = {'id': 'v3.0', 'status': 'stable', 'updated': UPDATED} -TOKENID = uuidutils.generate_uuid() +TOKENID = uuidutils.generate_uuid(dashed=False) def _create_version_list(versions):