diff --git a/rally/plugins/openstack/scenarios/neutron/network.py b/rally/plugins/openstack/scenarios/neutron/network.py index bc8a37f6..48f942d1 100644 --- a/rally/plugins/openstack/scenarios/neutron/network.py +++ b/rally/plugins/openstack/scenarios/neutron/network.py @@ -349,7 +349,7 @@ class CreateAndDeletePorts(utils.NeutronScenario): @validation.external_network_exists("floating_network") @scenario.configure(context={"cleanup": ["neutron"]}, name="NeutronNetworks.create_and_list_floating_ips") -class CeateAndListFloatingIps(utils.NeutronScenario): +class CreateAndListFloatingIps(utils.NeutronScenario): def run(self, floating_network=None, floating_ip_args=None): """Create and list floating IPs. diff --git a/tests/unit/plugins/openstack/scenarios/neutron/test_network.py b/tests/unit/plugins/openstack/scenarios/neutron/test_network.py index bc3b4cda..08fe7b27 100644 --- a/tests/unit/plugins/openstack/scenarios/neutron/test_network.py +++ b/tests/unit/plugins/openstack/scenarios/neutron/test_network.py @@ -383,7 +383,7 @@ class NeutronNetworksTestCase(test.ScenarioTestCase): @ddt.unpack def test_create_and_list_floating_ips(self, floating_network=None, floating_ip_args=None): - scenario = network.CeateAndListFloatingIps(self.context) + scenario = network.CreateAndListFloatingIps(self.context) floating_ip_args = floating_ip_args or {} scenario._create_floatingip = mock.Mock() scenario._list_floating_ips = mock.Mock()