Fix test_port_resource_request_inherited_policy test

In 'test_port_resource_request_inherited_policy' test a QoS policy
is assigned to a network. The network used in this test is created
in resource_setup(), which is run as part of setUpClass() phase.
Resources allocated in resource_setup() are shared by all tests
in the class, and are cleaned up in tearDownClass() only after all
test had been run. This means that
test_port_resource_request_inherited_policy test leaks network QoS
policy, that can impact all subsequent tests. Depending on the
order in which tests are run, this can break tests that are
checking port's resource_request attribute.

To avoid affecting other tests, create a dedicated provider network
in test_port_resource_request_inherited_policy test.

Related-Bug: #1922237
Change-Id: Id8758ef4fe56fe7e0e7792270d6ee585313592a6
diff --git a/neutron_tempest_plugin/api/admin/test_ports.py b/neutron_tempest_plugin/api/admin/test_ports.py
index a374b81..fa3b613 100644
--- a/neutron_tempest_plugin/api/admin/test_ports.py
+++ b/neutron_tempest_plugin/api/admin/test_ports.py
@@ -220,8 +220,12 @@
 
     @decorators.idempotent_id('b6c34ae4-44c8-47f0-86de-7ef9866fa000')
     def test_port_resource_request_inherited_policy(self):
+        base_segm = CONF.neutron_plugin_options.provider_net_base_segm_id
+        prov_network = self.create_provider_network(
+            physnet_name=self.physnet_name,
+            start_segmentation_id=base_segm)
         port = self._create_qos_policy_and_port(
-            network=self.prov_network, vnic_type=self.vnic_type,
+            network=prov_network, vnic_type=self.vnic_type,
             network_policy=True)
 
         self._assert_resource_request(port, self.vnic_type)