Merge list_servers_with_detail to list_servers

Through consistent-service-method-names dev, list_<resources>_detail
methods are merged into list_<resources> method.
This patch merges list_servers_with_detail into list_servers.

Partially implements blueprint consistent-service-method-names

Change-Id: I0eae2b04adfaf17cbba3e615fa13fcaee8652436
diff --git a/tempest/stress/cleanup.py b/tempest/stress/cleanup.py
index 29c4401..d9b430e 100644
--- a/tempest/stress/cleanup.py
+++ b/tempest/stress/cleanup.py
@@ -24,7 +24,7 @@
 def cleanup():
     admin_manager = clients.AdminManager()
 
-    body = admin_manager.servers_client.list_servers({"all_tenants": True})
+    body = admin_manager.servers_client.list_servers(all_tenants=True)
     LOG.info("Cleanup::remove %s servers" % len(body['servers']))
     for s in body['servers']:
         try: