diff --git a/rally/plugins/openstack/context/network/networks.py b/rally/plugins/openstack/context/network/networks.py index 824c9980fe..cfa8df3ce1 100644 --- a/rally/plugins/openstack/context/network/networks.py +++ b/rally/plugins/openstack/context/network/networks.py @@ -54,7 +54,7 @@ class Network(context.Context): # NOTE(rkiran): Some clients are not thread-safe. Thus during # multithreading/multiprocessing, it is likely the # sockets are left open. This problem is eliminated by - # creating a connection in setup and cleanup seperately. + # creating a connection in setup and cleanup separately. net_wrapper = network_wrapper.wrap( osclients.Clients(self.context["admin"]["endpoint"]), self.config) diff --git a/samples/plugins/runner/runner_plugin.py b/samples/plugins/runner/runner_plugin.py index 48ba9fa6e3..9e68eb1a97 100644 --- a/samples/plugins/runner/runner_plugin.py +++ b/samples/plugins/runner/runner_plugin.py @@ -24,7 +24,7 @@ from rally.task import runner class RandomTimesScenarioRunner(runner.ScenarioRunner): """Sample of scenario runner plugin. - Run scenario random number of times, which is choosen between min_times and + Run scenario random number of times, which is chosen between min_times and max_times. """ diff --git a/tests/unit/common/plugin/test_discover.py b/tests/unit/common/plugin/test_discover.py index 8bdf074a7c..3ddad84760 100644 --- a/tests/unit/common/plugin/test_discover.py +++ b/tests/unit/common/plugin/test_discover.py @@ -84,7 +84,7 @@ class LoadExtraModulesTestCase(test.TestCase): @mock.patch("%s.os.path.isfile" % DISCOVER, return_value=True) def test_load_plugins_from_file_fails(self, mock_isfile): - discover.load_plugins("/somwhere/plugin.py") + discover.load_plugins("/somewhere/plugin.py") @mock.patch("%s.os.path.isfile" % DISCOVER, return_value=False) def test_load_plugins_from_nonexisting_file(self, mock_isfile): @@ -100,4 +100,4 @@ class LoadExtraModulesTestCase(test.TestCase): mock_find_module, mock_load_module): # test no fails if module is broken # TODO(olkonami): check exception is handled correct - discover.load_plugins("/somwhere") + discover.load_plugins("/somewhere")