Merge "Fix typo of function naming conventions in test_deploy_utils.py"

This commit is contained in:
Zuul 2018-07-11 16:12:47 +00:00 committed by Gerrit Code Review
commit 52bdfd32df
1 changed files with 1 additions and 1 deletions

View File

@ -1172,7 +1172,7 @@ class OtherFunctionTestCase(db_base.DbTestCase):
result = utils.get_boot_option(self.node)
self.assertEqual("netboot", result)
def test_get_boot_option_overriden_default_value(self):
def test_get_boot_option_overridden_default_value(self):
cfg.CONF.set_override('default_boot_option', 'local', 'deploy')
self.node.instance_info = {}
result = utils.get_boot_option(self.node)