Make test_neutron_dhcp_agent_list_hosting_net use net name from conf

The test_neutron_dhcp_agent_list_hosting_net test assumes the name of
the network hosted by the dhcp agent is 'private' which may not be the
case depending on the openstack installation. This patch changes the
test case to use the existing option 'fixed_network_name' which already
defaults to 'private'.

Fixes bug 1206694

Change-Id: I2c5ad2ff050f672a113643acbfe76c9360c3da8f
diff --git a/tempest/cli/simple_read_only/test_neutron.py b/tempest/cli/simple_read_only/test_neutron.py
index 4860090..7b8340d 100644
--- a/tempest/cli/simple_read_only/test_neutron.py
+++ b/tempest/cli/simple_read_only/test_neutron.py
@@ -56,7 +56,8 @@
         self.assertTableStruct(ext, ['alias', 'name'])
 
     def test_neutron_dhcp_agent_list_hosting_net(self):
-        self.neutron('dhcp-agent-list-hosting-net', params="private")
+        self.neutron('dhcp-agent-list-hosting-net',
+                     params=CONF.compute.fixed_network_name)
 
     def test_neutron_agent_list(self):
         agents = self.parser.listing(self.neutron('agent-list'))