Merge "Fix misspellings in python openstackclient"

This commit is contained in:
Jenkins 2014-02-11 18:44:30 +00:00 committed by Gerrit Code Review
commit c8354b8d83
3 changed files with 5 additions and 5 deletions
openstackclient

@ -37,7 +37,7 @@ class OpenstackKeyring(keyring.backends.file.BaseKeyring):
block_size = 32
padding = '0'
# init the cipher with the class name, upto block_size
# init the cipher with the class name, up to block_size
password = __name__[block_size:]
password = password + (block_size - len(password) %
block_size) * padding

@ -32,7 +32,7 @@ VOLUME = {
'display_description': volume_description,
'size': volume_size,
'status': '',
'attach_status': 'detatched',
'attach_status': 'detached',
'metadata': volume_metadata,
}

@ -105,7 +105,7 @@ class TestVolumeCreate(TestVolume):
)
self.assertEqual(columns, collist)
datalist = (
'detatched',
'detached',
volume_fakes.volume_description,
volume_fakes.volume_name,
volume_fakes.volume_id,
@ -181,7 +181,7 @@ class TestVolumeCreate(TestVolume):
)
self.assertEqual(columns, collist)
datalist = (
'detatched',
'detached',
volume_fakes.volume_description,
volume_fakes.volume_name,
volume_fakes.volume_id,
@ -257,7 +257,7 @@ class TestVolumeCreate(TestVolume):
)
self.assertEqual(columns, collist)
datalist = (
'detatched',
'detached',
volume_fakes.volume_description,
volume_fakes.volume_name,
volume_fakes.volume_id,