Remove assertion of neutron port tagging

Neutron port won't be tagging on CNI network driver.

Change-Id: I6d4f70976f74eb4167c033e1af1db6a0857fdd86
This commit is contained in:
Hongbin Lu 2020-08-09 05:31:09 +00:00
parent 4a69e89f38
commit b5c6b0349e
1 changed files with 0 additions and 5 deletions

View File

@ -171,7 +171,6 @@ class TestContainer(base.BaseZunTest):
# self.assertEqual(port_name, port['name'])
self.assertEqual('', port['device_owner'])
self.assertEqual('', port['device_id'])
self.assertEqual([], port['tags'])
port = self.os_admin.ports_client.show_port(port['id'])['port']
self.assertEqual('', port['binding:host_id'])
self.assertEqual('unbound', port['binding:vif_type'])
@ -187,7 +186,6 @@ class TestContainer(base.BaseZunTest):
# self.assertEqual(port_name, port['name'])
self.assertTrue(port['device_owner'])
self.assertEqual(model.uuid, port['device_id'])
self.assertTrue(port['tags'])
self.assertTrue(port['binding:host_id'])
self.assertNotEqual('unbound', port['binding:vif_type'])
@ -200,9 +198,6 @@ class TestContainer(base.BaseZunTest):
# self.assertEqual(port_name, port['name'])
self.assertEqual('', port['device_owner'])
self.assertEqual('', port['device_id'])
# TODO(hongbin): The tags are not always cleanup due to bug #1776035
# Need to investigate the issue.
# self.assertEqual([], port['tags'])
self.assertEqual('', port['binding:host_id'])
self.assertEqual('unbound', port['binding:vif_type'])