tests: py2 cleanup - remove subclassing of object

Type: refactor

Change-Id: I9096e3b473110350e1e8e5936e3c4c164f8969a7
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:
Paul Vinciguerra
2020-12-04 14:57:51 -05:00
committed by Ole Tr�an
parent d6f221789d
commit e061dad55e
21 changed files with 31 additions and 30 deletions

View File

@ -15,7 +15,7 @@ from util import ppp, reassemble4, fragment_rfc791, fragment_rfc8200
from vpp_papi import VppEnum
class IPsecIPv4Params(object):
class IPsecIPv4Params:
addr_type = socket.AF_INET
addr_any = "0.0.0.0"
@ -54,7 +54,7 @@ class IPsecIPv4Params(object):
self.dscp = 0
class IPsecIPv6Params(object):
class IPsecIPv6Params:
addr_type = socket.AF_INET6
addr_any = "0::0"