Merge "Big Switch: Import DB module in unit test"

This commit is contained in:
Jenkins 2014-06-18 05:26:36 +00:00 committed by Gerrit Code Review
commit ff9173ede2
1 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,12 @@ from neutron.db import api as db
from neutron.plugins.bigswitch import config
from neutron.tests.unit.bigswitch import fake_server
# REVISIT(kevinbenton): This needs to be imported here to create the
# portbindings table since it's not imported until function call time
# in the porttracker_db module, which will cause unit test failures when
# the unit tests are being run by testtools
from neutron.db import portbindings_db # noqa
RESTPROXY_PKG_PATH = 'neutron.plugins.bigswitch.plugin'
NOTIFIER = 'neutron.plugins.bigswitch.plugin.AgentNotifierApi'
CALLBACKS = 'neutron.plugins.bigswitch.plugin.RestProxyCallbacks'