Fix functional test for ovsdbapp 0.4.0

The table_name_list argument went away and the functionality is
tested in another test which isn't broken.

Change-Id: I05ec39ac1d741ebae97344aea5035832e2ff2e9e
This commit is contained in:
Terry Wilson 2017-05-19 17:43:03 -05:00
parent 2f00df927b
commit 7dac3345ee
1 changed files with 0 additions and 8 deletions

View File

@ -21,14 +21,6 @@ from ovs.db import idl
class OVSDBConnectionTestCase(base.BaseSudoTestCase):
def test_limit_tables(self):
self.connection = connection.Connection(
cfg.CONF.OVS.ovsdb_connection,
cfg.CONF.ovs_vsctl_timeout, 'Open_vSwitch')
tables = ['Open_vSwitch', 'Bridge', 'Port']
self.connection.start(table_name_list=tables)
self.assertItemsEqual(tables, self.connection.idl.tables.keys())
def test_idl_factory(self):
tables = ['Open_vSwitch', 'Bridge', 'Port']