From 5ca549c06530fc32edf5e7a7b8df8aa39d86a0f5 Mon Sep 17 00:00:00 2001 From: Tuan Do Anh Date: Tue, 10 Jul 2018 10:26:20 +0700 Subject: [PATCH] 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 --- ironic/tests/unit/drivers/modules/test_deploy_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic/tests/unit/drivers/modules/test_deploy_utils.py b/ironic/tests/unit/drivers/modules/test_deploy_utils.py index 90f4885353..021ef33f77 100644 --- a/ironic/tests/unit/drivers/modules/test_deploy_utils.py +++ b/ironic/tests/unit/drivers/modules/test_deploy_utils.py @@ -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)