This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 2f9d9d2eed0e6e236e30e8848770c64380235eb9 Author: Dan Peschman <[email protected]> AuthorDate: Fri Feb 26 15:04:21 2021 -0700 fix typos --- libcloud/common/base.py | 2 +- libcloud/test/compute/test_rackspace.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libcloud/common/base.py b/libcloud/common/base.py index 1499f6e..1cc75bd 100644 --- a/libcloud/common/base.py +++ b/libcloud/common/base.py @@ -637,7 +637,7 @@ class Connection(object): if errno == -5: # Throw a more-friendly exception on "no address associated - # with hostname" error. This error could simpli indicate that + # with hostname" error. This error could simply indicate that # "host" Connection class attribute is set to an incorrect # value class_name = self.__class__.__name__ diff --git a/libcloud/test/compute/test_rackspace.py b/libcloud/test/compute/test_rackspace.py index 8bbdcf2..1e686c1 100644 --- a/libcloud/test/compute/test_rackspace.py +++ b/libcloud/test/compute/test_rackspace.py @@ -140,7 +140,7 @@ class BaseRackspaceNovaTestCase(object): clear_pricing_data() self.node = self.driver.list_nodes()[1] - def test_service_catalog_contais_right_endpoint(self): + def test_service_catalog_contains_right_endpoint(self): self.assertEqual(self.driver.connection.get_endpoint(), self.expected_endpoint)
