Merge "Rename test_list_servers_filter_by_server_status"

This commit is contained in:
Jenkins 2016-09-21 21:08:01 +00:00 committed by Gerrit Code Review
commit b03fdf264d
1 changed files with 2 additions and 2 deletions

View File

@ -119,8 +119,8 @@ class ListServerFiltersTestJSON(base.BaseV2ComputeTest):
self.assertNotIn(self.s3_name, map(lambda x: x['name'], servers))
@test.idempotent_id('ca78e20e-fddb-4ce6-b7f7-bcbf8605e66e')
def test_list_servers_filter_by_server_status(self):
# Filter the list of servers by server status
def test_list_servers_filter_by_active_status(self):
# Filter the list of servers by server active status
params = {'status': 'active'}
body = self.client.list_servers(**params)
servers = body['servers']