Fix parameter's type error in test case

The parameter's type was wrong. 

The type should be list not string.

Change-Id: I4b303e76c01336a48ae153615624442cf8c168db
This commit is contained in:
ting.wang
2015-12-14 12:24:27 +00:00
committed by ting wang
parent 8b9d581d11
commit 688cbea656
@@ -34,8 +34,9 @@ class InitializeDatabaseMixin(object):
# Force a refresh of the singleton plugin manager for each test.
manager._PLUGIN_MANAGER = None
manager.CONF.set_override('enabled_crypto_plugins',
'simple_crypto',
group='crypto')
['simple_crypto'],
group='crypto',
enforce_type=True)
self.project_id1 = uuid.uuid4().hex
self.project_id2 = uuid.uuid4().hex