Merge "Add the verify of network_id in _test_create_interface_by_port_id"
diff --git a/tempest/api/compute/servers/test_attach_interfaces.py b/tempest/api/compute/servers/test_attach_interfaces.py
index 0248c65..3c057ac 100644
--- a/tempest/api/compute/servers/test_attach_interfaces.py
+++ b/tempest/api/compute/servers/test_attach_interfaces.py
@@ -123,7 +123,7 @@
             server['id'], port_id=port_id)['interfaceAttachment']
         iface = waiters.wait_for_interface_status(
             self.interfaces_client, server['id'], iface['port_id'], 'ACTIVE')
-        self._check_interface(iface, port_id=port_id)
+        self._check_interface(iface, port_id=port_id, network_id=network_id)
         return iface
 
     def _test_create_interface_by_fixed_ips(self, server, ifs):