Fixed misspellings in Tempest

Change-Id: Id52898cb47008677640e228363dde96e9cba173b
This commit is contained in:
Marc Solanas 2014-02-07 00:04:15 -08:00
parent c34c11460f
commit b15d8b6e00
5 changed files with 7 additions and 7 deletions

View File

@ -145,7 +145,7 @@ class ServersAdminTestJSON(base.BaseV2ComputeAdminTest):
# The server in error state should be rebuilt using the provided
# image and changed to ACTIVE state
# resetting vm state require admin priviledge
# resetting vm state require admin privilege
resp, server = self.client.reset_state(self.s1_id, state='error')
self.assertEqual(202, resp.status)
resp, rebuilt_server = self.non_admin_client.rebuild(

View File

@ -147,7 +147,7 @@ class ServersAdminV3Test(base.BaseV3ComputeAdminTest):
# The server in error state should be rebuilt using the provided
# image and changed to ACTIVE state
# resetting vm state require admin priviledge
# resetting vm state require admin privilege
resp, server = self.client.reset_state(self.s1_id, state='error')
self.assertEqual(202, resp.status)
resp, rebuilt_server = self.non_admin_client.rebuild(

View File

@ -72,7 +72,7 @@ class Client(object):
look_for_keys=self.look_for_keys,
key_filename=self.key_filename,
timeout=self.channel_timeout, pkey=self.pkey)
LOG.info("ssh connection to %s@%s sucessfuly created",
LOG.info("ssh connection to %s@%s successfuly created",
self.username, self.host)
return ssh
except (socket.error,

View File

@ -114,7 +114,7 @@ class TestStampPattern(manager.OfficialClientTest):
detach_volume_client(server.id, volume.id)
self._wait_for_volume_status(volume, 'available')
def _wait_for_volume_availible_on_the_system(self, server_or_ip):
def _wait_for_volume_available_on_the_system(self, server_or_ip):
ssh = self.get_remote_client(server_or_ip)
def _func():
@ -161,7 +161,7 @@ class TestStampPattern(manager.OfficialClientTest):
ip_for_server = server
self._attach_volume(server, volume)
self._wait_for_volume_availible_on_the_system(ip_for_server)
self._wait_for_volume_available_on_the_system(ip_for_server)
self._create_timestamp(ip_for_server)
self._detach_volume(server, volume)
@ -189,7 +189,7 @@ class TestStampPattern(manager.OfficialClientTest):
# attach volume2 to instance2
self._attach_volume(server_from_snapshot, volume_from_snapshot)
self._wait_for_volume_availible_on_the_system(ip_for_snapshot)
self._wait_for_volume_available_on_the_system(ip_for_snapshot)
# check the existence of the timestamp file in the volume2
self._check_timestamp(ip_for_snapshot)

View File

@ -278,7 +278,7 @@ class InstanceRunTest(BotoTestCase):
# TODO(afazekas): ping test. dependecy/permission ?
self.assertVolumeStatusWait(volume, "available")
# NOTE(afazekas): it may be reports availble before it is available
# NOTE(afazekas): it may be reports available before it is available
ssh = RemoteClient(address.public_ip,
CONF.compute.ssh_user,