Fix misspellings in python-glanceclient
Fix misspellings detected by: * pip install misspellings * git ls-files | grep -v locale | misspellings -f - Change-Id: I504521e702c675640ab3869c608fa96edd2477b4 Closes-Bug: #1257295
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# This is here for compatability purposes. Once all known OpenStack clients
|
# This is here for compatibility purposes. Once all known OpenStack clients
|
||||||
# are updated to use glanceclient.exc, this file should be removed
|
# are updated to use glanceclient.exc, this file should be removed
|
||||||
from glanceclient.exc import *
|
from glanceclient.exc import *
|
||||||
|
@@ -44,7 +44,7 @@ class TestVerifiedHTTPSConnection(testtools.TestCase):
|
|||||||
|
|
||||||
def test_ssl_init_cert_no_key(self):
|
def test_ssl_init_cert_no_key(self):
|
||||||
"""
|
"""
|
||||||
Test VerifiedHTTPSConnection: absense of SSL key file.
|
Test VerifiedHTTPSConnection: absence of SSL key file.
|
||||||
"""
|
"""
|
||||||
cert_file = os.path.join(TEST_VAR_DIR, 'certificate.crt')
|
cert_file = os.path.join(TEST_VAR_DIR, 'certificate.crt')
|
||||||
cacert = os.path.join(TEST_VAR_DIR, 'ca.crt')
|
cacert = os.path.join(TEST_VAR_DIR, 'ca.crt')
|
||||||
@@ -58,7 +58,7 @@ class TestVerifiedHTTPSConnection(testtools.TestCase):
|
|||||||
|
|
||||||
def test_ssl_init_key_no_cert(self):
|
def test_ssl_init_key_no_cert(self):
|
||||||
"""
|
"""
|
||||||
Test VerifiedHTTPSConnection: absense of SSL cert file.
|
Test VerifiedHTTPSConnection: absence of SSL cert file.
|
||||||
"""
|
"""
|
||||||
key_file = os.path.join(TEST_VAR_DIR, 'privatekey.key')
|
key_file = os.path.join(TEST_VAR_DIR, 'privatekey.key')
|
||||||
cacert = os.path.join(TEST_VAR_DIR, 'ca.crt')
|
cacert = os.path.join(TEST_VAR_DIR, 'ca.crt')
|
||||||
|
Reference in New Issue
Block a user