Fix typo of function naming conventions in test_deploy_utils.py

Corrected the typo of function naming conventions in test_deploy_utils.py

Change-Id: I15935e762409db3795fbc0b037e25cf00e9d7a58
This commit is contained in:
Tuan Do Anh 2018-07-10 10:26:20 +07:00
parent 3347e155b3
commit 5ca549c065
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)