Remove usage of parameter enforce_type

DeprecationWarning: Using the 'enforce_type' argument is deprecated in
version '4.0' and will be removed in version '5.0': The argument
enforce_type has changed its default value to True and then will be
removed completely."

Change-Id: I3e29f9c443f76fa3acaf0267a0c42618f89961d3
See: https://review.openstack.org/#/c/328692/
This commit is contained in:
Ngo Quoc Cuong 2017-06-27 21:26:14 -04:00
parent 261853ee5a
commit 860288305f
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class TestApp(base.MuranoAgentTestCase, fixtures.FunctionFixture):
super(TestApp, self).setUp()
mock_path.return_value = True
self.agent = app.MuranoAgent()
CONF.set_override('storage', 'cache', enforce_type=True)
CONF.set_override('storage', 'cache')
self.addCleanup(CONF.clear_override, 'storage')
def test_verify_execution_plan_downloable(self):