From: Ondrej Lichtner olichtne@redhat.com
Remove the extra 'BasePvPTestConf' reference to the parent class from the generator config object initialization.
Remove the empty line at the end of file.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com --- lnst/Recipes/ENRT/OvS_DPDK_PvP.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lnst/Recipes/ENRT/OvS_DPDK_PvP.py b/lnst/Recipes/ENRT/OvS_DPDK_PvP.py index b76a5b7..63a6af4 100644 --- a/lnst/Recipes/ENRT/OvS_DPDK_PvP.py +++ b/lnst/Recipes/ENRT/OvS_DPDK_PvP.py @@ -37,7 +37,7 @@ def __init__(self): self.testpmd = None
def __init__(self): - self.generator = self.BasePvPTestConf.BaseHostConf() + self.generator = self.BaseHostConf() self.dut = self.DUTConf() self.guest = self.GuestConf()
@@ -301,4 +301,3 @@ def _xml_add_vhostuser_dev(self, guest_xml, name, mac_addr): ET.SubElement(interface, 'source', type='unix', path=vhost_server_path, mode='server') return vhost_server_path -