Have debug_venv use OVN venv

The change separating ovs and ovn venv classes requires debug_venv
to be updated to debug OVN tests.

Change-Id: Ie5ced4a499e5921636f726533bcab1e4bb52c77b
This commit is contained in:
Terry Wilson 2017-09-01 10:45:09 -05:00
parent 55f770c4c2
commit a9bf5c98f0
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ for d in sys.argv[1:]:
venvdir = os.path.abspath(sys.argv[1])
ovsdir = os.path.abspath(sys.argv[2])
v = venv.OvsVenvFixture(venvdir, ovsdir)
v = venv.OvsOvnVenvFixture(venvdir, ovsdir)
try:
atexit.register(v.cleanUp)
v.setUp()