Skip to content

Commit

Permalink
renaming some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Waldon committed Aug 11, 2011
1 parent 28ebff1 commit 52e4fd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions stacktester/tests/test_server_actions.py
Expand Up @@ -71,7 +71,7 @@ def _get_boot_time(self):
return time.time() - uptime

def test_reboot_server_soft(self):
"""Verify that a server can be rebooted (SOFT)."""
"""Reboot a server (SOFT)"""

# SSH and get the uptime
initial_time_started = self._get_boot_time()
Expand All @@ -98,7 +98,7 @@ def test_reboot_server_soft(self):
self.assertTrue(initial_time_started < post_reboot_time_started)

def test_reboot_server_hard(self):
"""Verify that a server can be rebooted (HARD)."""
"""Rebood a server (HARD)"""

# SSH and get the uptime
initial_time_started = self._get_boot_time()
Expand Down
2 changes: 1 addition & 1 deletion stacktester/tests/test_server_addresses.py
Expand Up @@ -31,7 +31,7 @@ def tearDown(self):
self.os.nova.delete_server(self.server_id)

def test_server_addresses(self):
"""Ensure address information is available"""
"""Retrieve server addresses information"""
url = '/servers/%s' % self.server_id
response, body = self.os.nova.request('GET', url)
self.assertEqual(response.status, 200)
Expand Down

0 comments on commit 52e4fd2

Please sign in to comment.