Remove extra return value from scenario call to show_router
This was missed in the client-returns-one-value work. It was not noticed
because the bad code is inside a conditional on CONF.network.public_network_
which is not set by gate jobs.
Change-Id: I39acd1054bdf7154bd889b6a9e2902312c74596f
diff --git a/tempest/scenario/manager.py b/tempest/scenario/manager.py
index e237d3a..6c3498a 100644
--- a/tempest/scenario/manager.py
+++ b/tempest/scenario/manager.py
@@ -991,7 +991,7 @@
router_id = CONF.network.public_router_id
network_id = CONF.network.public_network_id
if router_id:
- resp, body = client.show_router(router_id)
+ body = client.show_router(router_id)
return net_resources.AttributeDict(**body['router'])
elif network_id:
router = self._create_router(client, tenant_id)