Merge "Remove usage of parameter enforce_type"

This commit is contained in:
Jenkins 2017-06-02 08:41:47 +00:00 committed by Gerrit Code Review
commit 1eadb8e248
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class TestCase(base.BaseTestCase):
"""Override config options for a test."""
group = kw.pop('group', None)
for k, v in kw.items():
CONF.set_override(k, v, group, enforce_type=True)
CONF.set_override(k, v, group)
def stub_out(self, old, new):
"""Replace a function for the duration of the test.