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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user