]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix class name typo in test_db_rpc_base
authorTakuma Watanabe <watanabe.takuma@lab.ntt.co.jp>
Wed, 19 Feb 2014 10:28:18 +0000 (19:28 +0900)
committerTakuma Watanabe <watanabe.takuma@lab.ntt.co.jp>
Wed, 19 Feb 2014 10:28:18 +0000 (19:28 +0900)
Change-Id: I23fd11fe4fdd2988463f2cf592d884cba72cdb41
Closes-Bug: #1281921

neutron/tests/unit/test_db_rpc_base.py

index ba225fcbf7f3ca049488ed55e80e23203a1db008..69180e19b8434db2bac8b6399711836e8f1e17a9 100644 (file)
@@ -21,10 +21,10 @@ from neutron.openstack.common.db import exception as db_exc
 from neutron.tests import base
 
 
-class TestDhcpRpcCallackMixin(base.BaseTestCase):
+class TestDhcpRpcCallbackMixin(base.BaseTestCase):
 
     def setUp(self):
-        super(TestDhcpRpcCallackMixin, self).setUp()
+        super(TestDhcpRpcCallbackMixin, self).setUp()
         self.plugin_p = mock.patch('neutron.manager.NeutronManager.get_plugin')
         get_plugin = self.plugin_p.start()
         self.plugin = mock.MagicMock()
@@ -36,7 +36,7 @@ class TestDhcpRpcCallackMixin(base.BaseTestCase):
     def tearDown(self):
         self.log_p.stop()
         self.plugin_p.stop()
-        super(TestDhcpRpcCallackMixin, self).tearDown()
+        super(TestDhcpRpcCallbackMixin, self).tearDown()
 
     def test_get_active_networks(self):
         plugin_retval = [dict(id='a'), dict(id='b')]